diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 0000000000..c9b6c9d450 --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,20 @@ +name: Close stale issues and PRs +on: + workflow_dispatch: {} + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." + stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days." + close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity." + close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity." + days-before-issue-stale: 30 + days-before-pr-stale: 45 + days-before-issue-close: 5 + days-before-pr-close: 10 \ No newline at end of file diff --git a/components/Card.tsx b/components/Card.tsx index 226383e9f7..8836b3f97e 100644 --- a/components/Card.tsx +++ b/components/Card.tsx @@ -1,5 +1,6 @@ import { ArrowRightIcon } from '@100mslive/react-icons'; import { Flex, Box, Text } from '@100mslive/react-ui'; +import { AppAnalytics } from '../lib/publishEvents'; interface CardProps { icon: any; @@ -17,7 +18,7 @@ const Card: React.FC = ({ icon, title, link, subText, id, cta = 'Read justify="between" onClick={() => { if (link) { - window.analytics.track('card.clicked', { + AppAnalytics.track('card.clicked', { title, link, currentPage: window.location.href diff --git a/components/ChipDropDown.tsx b/components/ChipDropDown.tsx index cc2405df05..613aa786c4 100644 --- a/components/ChipDropDown.tsx +++ b/components/ChipDropDown.tsx @@ -6,6 +6,7 @@ import useClickOutside from '@/lib/useClickOutside'; import { getUpdatedPlatformName } from '@/lib/utils'; import Chip from './Chip'; import { menuItem } from './Sidebar'; +import { AppAnalytics } from '../lib/publishEvents'; const ChipDropDown = ({ openFilter, @@ -35,7 +36,7 @@ const ChipDropDown = ({ { - window.analytics.track('platform.changed', { + AppAnalytics.track('platform.changed', { title: document.title, referrer: document.referrer, path: window.location.hostname, diff --git a/components/Code.tsx b/components/Code.tsx index 3a1a04415e..41c2b84825 100644 --- a/components/Code.tsx +++ b/components/Code.tsx @@ -1,5 +1,6 @@ import React, { PropsWithChildren } from 'react'; import { Box } from '@100mslive/react-ui'; +import { AppAnalytics } from '../lib/publishEvents'; export const CopyIcon = () => ( ( ); -const Code: React.FC> = - ({ children, section, sectionIndex, tab }) => { - const textRef = React.useRef(null); +const Code: React.FC< + PropsWithChildren<{ section?: string; sectionIndex?: number; tab?: string }> +> = ({ children, section, sectionIndex, tab }) => { + const textRef = React.useRef(null); - const copyFunction = () => { - setCopy(true); - // @ts-ignore - navigator.clipboard.writeText(textRef.current.textContent); - setTimeout(() => { - setCopy(false); - }, 2000); + const copyFunction = () => { + setCopy(true); + // @ts-ignore + navigator.clipboard.writeText(textRef.current.textContent); + setTimeout(() => { + setCopy(false); + }, 2000); - window.analytics.track('copy.to.clipboard', { - title: document.title, - referrer: document.referrer, - path: window.location.hostname, - pathname: window.location.pathname, - href: window.location.href, - section, - sectionIndex, - tab - }); - }; - const [copy, setCopy] = React.useState(false); + AppAnalytics.track('copy.to.clipboard', { + title: document.title, + referrer: document.referrer, + path: window.location.hostname, + pathname: window.location.pathname, + href: window.location.href, + section, + sectionIndex, + tab + }); + }; + const [copy, setCopy] = React.useState(false); - return ( -
-                
-                    
-                        {!copy ? (
-                            
-                        ) : (
-                            
-                        )}
-                    
-                    
-                        {children}
-                    
-                    
+    return (
+        
+            
+                
+                    {!copy ? (
+                        
+                    ) : (
+                        
+                    )}
                 
-            
- ); - }; + + {children} + + +
+
+ ); +}; export default Code; diff --git a/components/ExampleCard.tsx b/components/ExampleCard.tsx index 4e691ccf63..7684f80b5c 100644 --- a/components/ExampleCard.tsx +++ b/components/ExampleCard.tsx @@ -1,6 +1,8 @@ +import React from 'react'; import * as reactIcons from '@100mslive/react-icons'; import { Box, Flex, HorizontalDivider, Text } from '@100mslive/react-ui'; import { Technologies, technologyIconMap } from './TechnologySelect'; +import { AppAnalytics } from '../lib/publishEvents'; interface Props extends React.ComponentPropsWithoutRef { title: string; @@ -115,34 +117,33 @@ function IconList({ technologies, showIcon }: IconListProps) { {technology} ); - } else { - return ( - - {technologies.map((technology) => { - let Icon; - const iconNameOrPath = technologyIconMap[technology].icon; - if ( - typeof iconNameOrPath === 'string' && - reactIcons[iconNameOrPath] !== undefined - ) { - Icon = reactIcons[iconNameOrPath]; - } else { - Icon = iconNameOrPath; - } - return ( - - - - ); - })} - - ); } + return ( + + {technologies.map((technology) => { + let Icon; + const iconNameOrPath = technologyIconMap[technology].icon; + if ( + typeof iconNameOrPath === 'string' && + reactIcons[iconNameOrPath] !== undefined + ) { + Icon = reactIcons[iconNameOrPath]; + } else { + Icon = iconNameOrPath; + } + return ( + + + + ); + })} + + ); } type TagListProps = { @@ -156,7 +157,7 @@ function TagList({ tags, title }: TagListProps) { {tags.map((tag) => ( { - window.analytics.track('examples.tag.clicked', { + AppAnalytics.track('examples.tag.clicked', { tag, title }); diff --git a/components/Feedback.tsx b/components/Feedback.tsx index 476fa25ba9..2624e46d40 100644 --- a/components/Feedback.tsx +++ b/components/Feedback.tsx @@ -2,6 +2,7 @@ import React from 'react'; import { Flex, Box, Button, Text } from '@100mslive/react-ui'; import useClickOutside from '@/lib/useClickOutside'; import { currentUser } from '../lib/currentUser'; +import { AppAnalytics } from '../lib/publishEvents'; const emojis = [{ score: 1 }, { score: 2 }, { score: 3 }, { score: 4 }]; @@ -47,11 +48,11 @@ const Feedback = () => { title={getPlaceholder[`title-${id + 1}`]} style={{ position: 'relative', width: '24px', height: '24px' }} key={emoji.score} - role='button' + role="button" onClick={() => { const userDetails = currentUser(); if (showTextBox === false) { - window.analytics.track('docs.feedback.rating', { + AppAnalytics.track('docs.feedback.rating', { title: document.title, referrer: document.referrer, path: window.location.pathname, @@ -59,7 +60,7 @@ const Feedback = () => { timeStamp: new Date().toLocaleString(), customer_id: userDetails?.customer_id, user_id: userDetails?.user_id, - email: userDetails?.email, + email: userDetails?.email }); setFirstSelection(emoji.score); } @@ -121,7 +122,7 @@ const Feedback = () => { }} onClick={() => { const userDetails = currentUser(); - window.analytics.track('docs.feedback.message', { + AppAnalytics.track('docs.feedback.message', { title: document.title, message: message || '', rating: firstSelection, diff --git a/components/Header.tsx b/components/Header.tsx index 0ba030ff0e..4853f25195 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -1,5 +1,4 @@ import React, { useEffect, useState } from 'react'; -import UtmLinkWrapper from './UtmLinkWrapper'; import { useRouter } from 'next/router'; import { CrossIcon, @@ -10,11 +9,13 @@ import { SearchIcon } from '@100mslive/react-icons'; import { Flex, Text, useTheme } from '@100mslive/react-ui'; -import ActiveLink, { ActiveLinkProps } from './ActiveLink'; -import SearchModal from './SearchModal'; import { WebsiteLink, DashboardLink, GitHubLink, DiscordLink, ContactLink } from '@/lib/utils'; import { references } from 'api-references'; import { exposedPlatformNames } from 'common'; +import SearchModal from './SearchModal'; +import ActiveLink, { ActiveLinkProps } from './ActiveLink'; +import UtmLinkWrapper from './UtmLinkWrapper'; +import { AppAnalytics } from '../lib/publishEvents'; import { NavAPIReference } from './NavAPIReference'; interface Props { @@ -112,7 +113,7 @@ const Header: React.FC = ({ target="_blank" rel="noreferrer" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'logo.clicked', currentPage: window.location.href }) @@ -124,7 +125,7 @@ const Header: React.FC = ({ - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'docs.clicked', currentPage: window.location.href }) @@ -136,7 +137,7 @@ const Header: React.FC = ({ - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'examples.clicked', currentPage: window.location.href }) @@ -171,7 +172,7 @@ const Header: React.FC = ({ noHighlight target="_blank" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: '100ms.live.clicked', currentPage: window.location.href }) @@ -185,7 +186,7 @@ const Header: React.FC = ({ noHighlight target="_blank" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'sales.clicked', currentPage: window.location.href }) @@ -198,7 +199,7 @@ const Header: React.FC = ({ noHighlight target="_blank" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'dashboard.clicked', currentPage: window.location.href }) @@ -212,7 +213,7 @@ const Header: React.FC = ({ target="_blank" rel="noreferrer" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'discord.clicked', currentPage: window.location.href }) @@ -231,7 +232,7 @@ const Header: React.FC = ({ target="_blank" rel="noreferrer" onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'github.clicked', currentPage: window.location.href }) @@ -279,43 +280,41 @@ const HeaderLink = ({ children, noHighlight, ...rest -}: React.PropsWithChildren>) => { - return ( - - {(className) => ( - - {children} - - )} - - ); -}; +}: React.PropsWithChildren>) => ( + + {(className) => ( + + {children} + + )} + +); diff --git a/components/MDXComponents.tsx b/components/MDXComponents.tsx index afedc8d742..0d04eafc87 100644 --- a/components/MDXComponents.tsx +++ b/components/MDXComponents.tsx @@ -27,6 +27,7 @@ import { PortraitImage } from './PortraitImage'; import { CollapsibleRoot, CollapsiblePreview, CollapsibleContent } from './CollapsibleSection'; import { CollapsibleStep } from './CollapsibleStep'; import SuggestedBlogs from './SuggestedBlogs'; +import { AppAnalytics } from '@/lib/publishEvents'; const CodeCustom = (props: any) => {props.children}; @@ -71,7 +72,7 @@ const LinkCustom = (props) => { rel="noopener noreferrer" href={href} onClick={() => - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId, componentId: window?.location?.pathname.split('/')?.[2], // splitArr = ['', 'docs', 'sdk'] page: window?.location?.pathname diff --git a/components/SearchModal.tsx b/components/SearchModal.tsx index d090d8cf92..1caa05f0b5 100644 --- a/components/SearchModal.tsx +++ b/components/SearchModal.tsx @@ -1,15 +1,16 @@ import React, { useEffect, useRef, useState } from 'react'; import Image from 'next/image'; -import UtmLinkWrapper from './UtmLinkWrapper'; import { SearchIcon, ArrowRightIcon } from '@100mslive/react-icons'; import { Flex, Box, Text } from '@100mslive/react-ui'; import useClickOutside from '@/lib/useClickOutside'; import algoliasearch from 'algoliasearch/lite'; import { InstantSearch, connectHits, connectSearchBox, Configure } from 'react-instantsearch-dom'; +import { titleCasing } from '@/lib/utils'; import Tag from './Tag'; +import UtmLinkWrapper from './UtmLinkWrapper'; import Chip from './Chip'; import ChipDropDown from './ChipDropDown'; -import { titleCasing } from '@/lib/utils'; +import { AppAnalytics } from '../lib/publishEvents'; const searchClient = algoliasearch( process.env.NEXT_PUBLIC_ALGOLIA_APP_ID || '', @@ -25,14 +26,25 @@ const searchInfoItems = [ { title: 'to navigate', content: [ - , - + , + ] }, { title: 'to select', content: [ { if (hits.length === 0) { - window.analytics.track('no.results', { + AppAnalytics.track('no.results', { title: document.title, referrer: document.referrer, path: window.location.hostname, @@ -204,7 +216,7 @@ const ResultBox = ({ borderRadius: '$0' }} onClick={() => { - window.analytics.track('docs.search.result.clicked', { + AppAnalytics.track('docs.search.result.clicked', { totalNumberOfResults: hits?.length, textInSearch: searchTerm || '', rankOfSearchResult: i + 1, @@ -412,7 +424,7 @@ const SearchModal: React.FC = ({ setModal }) => { }, [hitsCount, searchTerm]); useClickOutside(ref, () => { - window.analytics.track('docs.search.dismissed', { + AppAnalytics.track('docs.search.dismissed', { textInSearch: searchTerm || '', totalNumberOfResults: hitsCount, referrer: document.referrer, @@ -515,7 +527,7 @@ const FilterBar = ({ onClick={() => { if (typeFilter === type) setTypeFilter(ALL_TYPES); else { - window.analytics.track('type.changed', { + AppAnalytics.track('type.changed', { title: document.title, referrer: document.referrer, path: window.location.hostname, @@ -540,8 +552,7 @@ const FilterBar = ({ ); -const getFilterQuery = (platformFilter, typeFilter) => { - return `${platformFilter === ALL_PLATFORMS ? 'NOT ' : ''}platformName:"${platformFilter}" AND ${ +const getFilterQuery = (platformFilter, typeFilter) => + `${platformFilter === ALL_PLATFORMS ? 'NOT ' : ''}platformName:"${platformFilter}" AND ${ typeFilter === ALL_TYPES ? 'NOT ' : '' }type:"${typeFilter}"`; -}; diff --git a/components/SegmentAnalytics.tsx b/components/SegmentAnalytics.tsx index 38a09b6abd..51e34a1642 100644 --- a/components/SegmentAnalytics.tsx +++ b/components/SegmentAnalytics.tsx @@ -1,5 +1,5 @@ import React from 'react'; - +import { AppAnalytics } from '../lib/publishEvents'; const SegmentAnalytics = ({ title, options }) => { React.useEffect(() => { if (typeof window !== 'undefined') { @@ -12,7 +12,7 @@ const SegmentAnalytics = ({ title, options }) => { }, {}); // @ts-ignore const url = new URL(window.location.href); - window.analytics.page(title, { + AppAnalytics.page(title, { ...params, ...options, title, @@ -26,7 +26,7 @@ const SegmentAnalytics = ({ title, options }) => { utm_keyword: url.searchParams.get('utm_keyword'), utm_term: url.searchParams.get('utm_term') }); - window.analytics.track('page.viewed', { + AppAnalytics.track('page.viewed', { ...params, ...options, title: document.title, diff --git a/components/Sidebar.tsx b/components/Sidebar.tsx index bde4ddcf4f..2f7929b899 100644 --- a/components/Sidebar.tsx +++ b/components/Sidebar.tsx @@ -1,7 +1,6 @@ /* eslint-disable react/no-array-index-key */ import React, { useEffect, useState, useRef } from 'react'; import { useRouter } from 'next/router'; -import UtmLinkWrapper from './UtmLinkWrapper'; import FlutterIcon from '@/assets/FlutterIcon'; import AndroidIcon from '@/assets/icons/AndroidIcon'; import IosIcon from '@/assets/icons/IosIcon'; @@ -26,9 +25,11 @@ import { import { Listbox } from '@headlessui/react'; import { Flex, Box, Text, CSS } from '@100mslive/react-ui'; import { getUpdatedPlatformName } from '@/lib/utils'; +import { AppAnalytics } from '../lib/publishEvents'; import SidebarSection from './SidebarSection'; import ReleaseNotes from './ReleaseNotes'; import PlatformAccordion from './PlatformAccordion'; +import UtmLinkWrapper from './UtmLinkWrapper'; const accordionIconStyle = { height: '24px', width: '24px', color: 'inherit' }; @@ -141,7 +142,7 @@ const Sidebar: React.FC = ({ const changeTech = (s) => { setTech((prevSelection) => { - window.analytics.track('link.clicked', { + AppAnalytics.track('link.clicked', { btnId: 'platform.switched', switchedTo: s.name, switchedFrom: prevSelection.name, @@ -334,7 +335,7 @@ const Sidebar: React.FC = ({ }} onClick={() => { setShowBaseView(true); - window.analytics.track('btn.clicked', { + AppAnalytics.track('btn.clicked', { btnId: 'content.overview.clicked', currentPage: window.location.href }); diff --git a/components/SuggestedBlogs.tsx b/components/SuggestedBlogs.tsx index 03fd0754dc..8df674dd12 100644 --- a/components/SuggestedBlogs.tsx +++ b/components/SuggestedBlogs.tsx @@ -1,6 +1,8 @@ import React from 'react'; import { Box, Text } from '@100mslive/react-ui'; import { ExternalLinkIcon } from '@100mslive/react-icons'; +import { AppAnalytics } from '../lib/publishEvents'; + interface Props { suggestedBlogs: Array<{ title: string; @@ -54,7 +56,7 @@ const SuggestedBlogs: React.FC = ({ suggestedBlogs }) => { } }} onClick={() => { - window.analytics.track('docs.blog.redirect', { + AppAnalytics.track('docs.blog.redirect', { type: 'blog_redirect', blog_title: blog.title, path: window.location.pathname, diff --git a/docs/android/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx b/docs/android/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx index 771bd3f3b9..183db57ff3 100644 --- a/docs/android/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx +++ b/docs/android/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx @@ -14,8 +14,10 @@ implementation "live.100ms:hms-noise-cancellation-android:$hmsVersion" ``` 2. Toggle noise cancellation on in your application with `hmsSDK.setNoiseCancellationEnabled(true)` in your `onJoin` callback. -> Note: Prebuilt also supports noise cancellation, to enable it add the import as above and ensure it's enabled from your prebuilt dashboard. From the [dashboard](https://dashboard.100ms.live/), select the template, go to "Customize Prebuilt" -> "Screens and Components" -> "Noise Cancellation State". -> You will also need to toggle it in the [dashboard's](https://dashboard.100ms.live/)"Template" -> "Advanced Settings" -> "Noise Cancellation" + +**IMPORTANT**
+Enable Noise Cancellation in the template configuration. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) +
> Note: Adding the library for noise cancellation will increase app size by 5.6 Mb. Noise cancellation is turned off by default for all calls. diff --git a/docs/android/v2/release-notes/release-notes.mdx b/docs/android/v2/release-notes/release-notes.mdx index e83eaced86..8e3841e267 100644 --- a/docs/android/v2/release-notes/release-notes.mdx +++ b/docs/android/v2/release-notes/release-notes.mdx @@ -17,6 +17,18 @@ import AndroidPrebuiltVersionShield from '@/common/android-prebuilt-version-shie | live.100ms:hls-player-stats: | | live.100ms:video-filters: || | live.100ms:virtual-background: || +| live.100ms:hms-noise-cancellation-android: | | + +## v2.9.67 - 2024-09-10 +### Fixed +* VB memory leaks +* Native crashes and memory issues on multiple fast join-leave +* If leave was called when retry is ongoing, then next join would be queued if called on the same instance sometimes + +## v2.9.66 - 2024-08-2024 +### Fixed +* Java, native and graphic memory leaks +* Getting "Failed to set offer/answer" error after leaving sometimes ## v2.9.67 - 2024-09-25 ### Fixed diff --git a/docs/api-reference/javascript/v2/classes/EventBus.md b/docs/api-reference/javascript/v2/classes/EventBus.md index 2922bec887..b1531adb0f 100644 --- a/docs/api-reference/javascript/v2/classes/EventBus.md +++ b/docs/api-reference/javascript/v2/classes/EventBus.md @@ -83,6 +83,12 @@ nav: '3.2' --- +### localVideoUnmutedNatively + +• `Readonly` **localVideoUnmutedNatively**: `HMSInternalEvent`<`unknown`\> + +--- + ### policyChange • `Readonly` **policyChange**: `HMSInternalEvent`<`PolicyParams`\> diff --git a/docs/api-reference/javascript/v2/interfaces/HMSActions.md b/docs/api-reference/javascript/v2/interfaces/HMSActions.md index f9acf6806c..f6b4484478 100644 --- a/docs/api-reference/javascript/v2/interfaces/HMSActions.md +++ b/docs/api-reference/javascript/v2/interfaces/HMSActions.md @@ -1352,6 +1352,25 @@ If you want to stop transcriptions(Closed Caption). --- +### submitSessionFeedback + +▸ **submitSessionFeedback**(`feedback`, `eventEndpoint?`): `Promise`<`void`\> + +After leave send feedback to backend for call quality purpose. + +#### Parameters + +| Name | Type | +| :--------------- | :------------------- | +| `feedback` | `HMSSessionFeedback` | +| `eventEndpoint?` | `string` | + +#### Returns + +`Promise`<`void`\> + +--- + ### switchCamera ▸ **switchCamera**(): `Promise`<`void`\> diff --git a/docs/flutter/v2/how-to-guides/configure-your-device/camera/camera-controls.mdx b/docs/flutter/v2/how-to-guides/configure-your-device/camera/camera-controls.mdx index 9e1c3c7427..7def45f760 100644 --- a/docs/flutter/v2/how-to-guides/configure-your-device/camera/camera-controls.mdx +++ b/docs/flutter/v2/how-to-guides/configure-your-device/camera/camera-controls.mdx @@ -64,3 +64,47 @@ HMSCameraControls.toggleFlash(); ``` > 🔑 Note: If camera is toggled while flash is ON, then flash turns OFF. + +## Zoom Controls + +### Check if zoom feature is available + +To check if the current facing camera supports zoom feature. + +```dart +var isZoomSupported = await HMSCameraControls.isZoomSupported(); +``` + +### Set Zoom Level + +To set zoom for camera, we can use `setZoom` method. For android `zoomValue` should be between 1 and max zoom level. For iOS `zoomValue` must be in the range supported by camera. + +```dart +// To zoom in the camera by 2x +HMSCameraControls.setZoom(zoomValue: 2); +``` + +### Reset Zoom Level + +To reset the zoom level to 1x, we can use `resetZoom` method: + +```dart +// To reset the zoom level back to 1x +HMSCameraControls.resetZoom(); +``` + +### Get max zoom level (Android Only) + +To get the maximum zoom level supported by the camera, we can use `getMaxZoom` method: + +```dart +var maxZoom = await HMSCameraControls.getMaxZoom(); +``` + +### Get min zoom level (Android Only) + +To get the minimum zoom level supported by the camera, we can use `getMinZoom` method: + +```dart +var minZoom = await HMSCameraControls.getMinZoom(); +``` diff --git a/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx b/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx index 8d29a11d3c..ef9123c75e 100644 --- a/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx +++ b/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx @@ -3,6 +3,8 @@ title: Noise Cancellation nav: 13.1 --- +import AndroidSdkVersionShield from '@/common/android-sdk-version-shield.md'; + The Noise Cancellation feature is an invaluable tool designed to enhance the audio quality in scenarios such as conferences, live streams, and recordings where unwanted background noise can degrade the listening experience. By leveraging advanced Artificial Intelligence (AI) algorithms, this feature intelligently identifies and suppresses extraneous sounds, ensuring clear and crisp audio output. ## Key Benefits @@ -21,7 +23,10 @@ The Noise Cancellation feature employs a sophisticated AI model trained specific `hmssdk_flutter` version 1.10.0 or higher is required to utilize the Noise Cancellation feature in your Flutter application. -Also, this feature has gated access currently. To enable Noise Cancellation in your Rooms, reach out to **support@100ms.live** or connect with us on [100ms Discord](https://discord.com/invite/kGdmszyzq2). + +**IMPORTANT**
+Enable Noise Cancellation in the template configuration. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) +
## Usage @@ -31,7 +36,25 @@ HMSSDK provides `HMSNoiseCancellationController` to control Noise Cancellation i
-### Step 1: Set the enableNoiseCancellation property in HMSAudioTrackSetting as true +### Step 1: Add Noise Cancellation library dependency (Android only) + +Add the following dependency to your app's `build.gradle` file to integrate the Noise Cancellation feature into your Flutter application: +``` +dependencies { + ... + implementation "live.100ms:hms-noise-cancellation-android:2.9.67" +} +``` + +Ensure that you add the above dependency in the `dependencies` block of the `my_app_name/android/app/build.gradle` file. + +Check the reference [here](https://github.com/100mslive/100ms-flutter/blob/53466d8b225125bdfc0916ada15f6ba009a79afd/packages/hmssdk_flutter/example/android/app/build.gradle#L86) to see it in action in the sample app. + +Replace `2.9.67` with the latest version of the Noise Cancellation library available on the Maven Repository. + +This step is required only for the Android app. On iOS, the Noise Cancellation library is already integrated into the HMSSDK. + +### Step 2: Set the enableNoiseCancellation property in HMSAudioTrackSetting as true ```dart{6} /// To enable noise cancellation set the `enableNoiseCancellation` property to true @@ -42,7 +65,7 @@ var audioTrackSetting = HMSAudioTrackSetting( enableNoiseCancellation: true); ``` -### Step 2: Pass the Track Settings to the HMSSDK constructor +### Step 3: Pass the Track Settings to the HMSSDK constructor ```dart{4} /// Create Instance of `HMSTrackSetting` @@ -60,7 +83,7 @@ var hmsSDK = HMSSDK( hmsTrackSetting: trackSettings); ``` -### Step 3: Check for Noise Cancellation availability +### Step 4: Check for Noise Cancellation availability > 🔑 Note: You can call this API to check the state of Noise Cancellation only after successfully joining the Room. @@ -76,7 +99,7 @@ class Meeting implements HMSUpdateListener, HMSActionResultListener{ } ``` -### Step 4: If Noise Cancellation is available, enable it +### Step 5: If Noise Cancellation is available, enable it ```dart{13} class Meeting implements HMSUpdateListener, HMSActionResultListener{ @@ -97,7 +120,7 @@ class Meeting implements HMSUpdateListener, HMSActionResultListener{ } ``` -### Step 5: To disable Noise Cancellation use HMSNoiseCancellationController's disable method +### Step 6: To disable Noise Cancellation use HMSNoiseCancellationController's disable method ```dart{12} class Meeting implements HMSUpdateListener, HMSActionResultListener{ diff --git a/docs/flutter/v2/quickstart/token-endpoint.mdx b/docs/flutter/v2/quickstart/token-endpoint.mdx deleted file mode 100644 index 37dd3f21b6..0000000000 --- a/docs/flutter/v2/quickstart/token-endpoint.mdx +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Auth Token Endpoint Guide -nav: 2.4 ---- - -## Overview - -100ms provides an option to get `Auth Tokens` without setting up a token generation backend service to simplify your integration journey while testing the [sample app](https://github.com/100mslive/100ms-web) or building integration with 100ms. - -You can find the token endpoint from the [developer page](https://dashboard.100ms.live/developer) in your 100ms dashboard. - -![Token endpoint](/guides/token-endpoint-dashboard.png) - -We recommend you move to your token generation service before you transition your app to production, as our token endpoint service will not scale in production. - -The "Sample Apps" built using 100ms client SDKs require an `Auth Token` to join a room to initiate a video conferencing or live streaming session. Please check the [Authentication and Tokens guide](/flutter/v2/foundation/security-and-tokens) - -Please note that you cannot use the token endpoint to create a `Management Token` for server APIs. Refer to the [Management Token section](/flutter/v2/foundation/security-and-tokens#management-token) in Authentication and Tokens guide for more information. - -## Get an auth token using token endpoint - -You can use the token endpoint from your 100ms dashboard while building integration with 100ms. This acts as a tool enabling front-end developers to complete the integration without depending on the backend developers to set up a token generation backend service. - -**URL format:** `api/token` - -100ms token endpoint can generate an Auth token with the inputs passed, such as room_id, role, & user_id (optional - your internal user identifier as the peer's user_id). You can use [jwt.io](https://jwt.io/) to validate whether the Auth token contains the same input values. - - - - -```bash -curl --location --request POST 'https://prod-in2.100ms.live/hmsapi/johndoe.app.100ms.live/api/token' \ ---header 'Content-Type: application/json' \ ---data-raw '{ - "room_id":"633fcdd84208780bf665346a", - "role":"host", - "user_id":"1234" -}' -``` - - - - -```json -{ - "token": "eyJ0eXAiOiJKV1QiLCJhbGciOi***************************R3tT-Yk", - "msg": "token generated successfully", - "status": 200, - "success": true, - "api_version": "2.0.192" -} -``` - - - -### Example client-side implementation - -You can directly add this to your client-side implementation, check our [sample app](https://github.com/100mslive/100ms-flutter/blob/0d4c3b5409003932d80cb19f67027a63424169e7/example/lib/service/room_service.dart#L8) for reference. - -### Disable 100ms token endpoint - -Due to some security concerns, if you don't wish to use the token endpoint to generate Auth tokens, then you can disable it on the [Developers page](https://dashboard.100ms.live/developer) on your dashboard by disabling the option "Disable <room_id>/<role> link format." - -![Disable Token endpoint](/guides/disable-token-endpoint.png) - -#### Error Response - -Once you're disabled it on the dashboard, the requests to create an Auth token using the 100ms token endpoint will throw the below error: - -```json -{ - "success": false, - "msg": "Generating token using the room_id and role is disabled.", - "api_version": "2.0.192" -} -``` diff --git a/docs/flutter/v2/release-notes/release-notes.mdx b/docs/flutter/v2/release-notes/release-notes.mdx index 563710807a..63771d0fdc 100644 --- a/docs/flutter/v2/release-notes/release-notes.mdx +++ b/docs/flutter/v2/release-notes/release-notes.mdx @@ -11,6 +11,51 @@ nav: 99 | hmssdk_flutter | [![Pub Version](https://img.shields.io/pub/v/hmssdk_flutter)](https://pub.dev/packages/hmssdk_flutter) | | hms_video_plugin | [![Pub Version](https://img.shields.io/pub/v/hms_video_plugin)](https://pub.dev/packages/hms_video_plugin) | +# 1.10.6 - 2024-09-17 + +| Package | Version | +| ----------------------------| ------ | +| hms_room_kit | 1.1.6 | +| hmssdk_flutter | 1.10.6 | + +### Breaking Changes in hms_room_kit + +- Removed Noise Cancellation dependency from Prebuilt on Android + + Noise Cancellation dependency is removed from Prebuilt on Android. + Users will have to add the dependency manually in their Android project to use Noise Cancellation. + This change is made to reduce the size of the Prebuilt package. + Refer to the [Noise Cancellation](https://www.100ms.live/docs/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation) documentation for more details. + + +### hmssdk_flutter + +- Added Camera Zoom Controls in `HMSCameraControls` + + Users can now control the camera zoom using the `HMSCameraControls` class. The `setZoom` method can be used to set the zoom level of the camera. + + Learn more about Camera Zoom Controls [here](https://www.100ms.live/docs/flutter/v2/how-to-guides/configure-your-device/camera/camera-controls). + +### hms_room_kit + +- Added support to control Automatic Gain Control and Noise Suppresion in Prebuilt + + Prebuilt now supports toggling Automatic Gain Control (AGC) and Noise Suppresion for better audio quality. Users can enable or disable AGC and Noise Suppresion from the prebuilt interface. + +- Resolved an issue where the Prebuilt UI was not updating on performing End Session + +- Hand Raise sorting based on Time + + Hand Raise list is now sorted based on the time of raising the hand. Refer to the [Hand Raise](https://www.100ms.live/docs/flutter/v2/how-to-guides/interact-with-room/peer/large-room) documentation for more details. + +- Added support to perform Switch Role of any user on Prebuilt + + Users can now switch the role of any user, if they have necessary permissions, from the Prebuilt interface. Refer to the [Change Role](https://www.100ms.live/docs/flutter/v2/how-to-guides/interact-with-room/peer/change-role) documentation for more details. + +Uses Android SDK 2.9.67 & iOS SDK 1.16.1 + +**Full Changelog**: [1.10.5...1.10.6](https://github.com/100mslive/100ms-flutter/compare/1.10.5...1.10.6) + # 1.10.5 - 2024-07-25 | Package | Version | diff --git a/docs/get-started/v2/get-started/features/noise-cancellation.mdx b/docs/get-started/v2/get-started/features/noise-cancellation.mdx new file mode 100644 index 0000000000..565ab3f5a1 --- /dev/null +++ b/docs/get-started/v2/get-started/features/noise-cancellation.mdx @@ -0,0 +1,98 @@ +--- +title: Noise Cancellation +nav: 3.9 +--- + +The Noise Cancellation feature is an invaluable tool designed to enhance the audio quality in scenarios such as conferences, live streams, and recordings where unwanted background noise can degrade the listening experience. + +## Key Benefits + +- **Enhanced Audio Quality**: Eliminates unwanted noise, including background chatter, clicks, claps, barking, and other sudden audio disturbances, resulting in a more pleasant listening experience for your audience. + +- **Improved Clarity**: Ensures that the primary audio content remains prominent and intelligible by reducing distractions caused by ambient noise. + +- **Optimized Communication**: Facilitates seamless communication in conferences and live streams by minimizing disruptions caused by environmental factors, thereby enhancing the overall professionalism of the presentation. + +This is a guide to enabling and using the Noise Cancellation on 100ms. + + + + + +### Getting Started +100ms Noise Cancellation is powered by [krisp.ai](https://krisp.ai/),ensuring clear communication by filtering out background noise. + + +**IMPORTANT**
+This is an add-on paid feature, for details check [100ms pricing page](https://www.100ms.live/pricing/) +
+ +### Enabling Noise Cancellation + +Noise Cancellation can be configured from the 100ms dashboard. + +#### Enabling Noise Cancellation at template level + +1. Navigate to a specific Template where you wish to enable the Noise Cancellation. +2. Click on **‘Advanced Settings’** tab in the Template configuration. +3. Enable ‘**Noise Cancellation**’. + + + + +By default, noise cancellation is enabled for all peers and roles for all the new templates. For existing templates, to enable Noise Cancellation by default for all the peers and roles check below section. + + +#### Enabling Noise Cancellation by default in preview + +For certain roles, you would like to enable Noise Cancellation by default from preview state. First enable the Noise Cancellation on Template as mentioned above. + +1. Navigate to a specific template where you wish to enable the Noise Cancellation. +2. Click on **'Customise Prebuilt'** on top right in the Template. +3. Click on **'Screens and Components'** and select the role where you wish to enable the Noise Cancellation by default +4. Enable **'Noise Cancellation State'**. + + + +### Integrating the Noise Cancellation +Noise Cancellation is available across all platforms (iOS, Android, Flutter, React Native and Web). Refer to the following platform SDK specific guides: +- [iOS](/ios/v2/how-to-guides/extend-capabilities/plugins/noise-cancellation) +- [Android](/android/v2/how-to-guides/extend-capabilities/noise-cancellation) +- [React Native](/react-native/v2/how-to-guides/extend-capabilities/noise-cancellation) +- [Flutter](/flutter/v2/how-to-guides/extend-capabilities/noise-cancellation) +- [Web](/javascript/v2/how-to-guides/extend-capabilities/plugins/krisp-noise-cancellation) + +### Using Noise Cancellation +Once Noise Cancellation is enabled and saved from the template configuration, the Noise Cancellation can be used across devices. Noise Cancellation can be activated or deactivated in the room or during the preview screen. + + + +
+ +### Frequently Asked Questions (FAQ) + +1. **Is Noise Cancellation a chargeable feature?** + + Yes, 100ms Noise Cancellation is charged based on per peer usage minutes. This means that for every peer that is enabling Noise Cancellation during session, their individual usage minutes will be aggregated. For more information, kindly check [100ms pricing page](https://www.100ms.live/pricing/). + +2. **Is Noise Cancellation available in prebuilt?** + + Yes, 100ms Prebuilt supports Noise Cancellation out of the box. Enable the Noise Cancellation as mentioned above. + +3. **How to track Noise Cancellation usage?** + + The usage can be tracked from the Usage Overview section on the [100ms Dashboard](https://dashboard.100ms.live/dashboard). \ No newline at end of file diff --git a/docs/get-started/v2/get-started/features/ui-composition.mdx b/docs/get-started/v2/get-started/features/ui-composition.mdx index ede3fc7b7b..95ae86513e 100644 --- a/docs/get-started/v2/get-started/features/ui-composition.mdx +++ b/docs/get-started/v2/get-started/features/ui-composition.mdx @@ -19,7 +19,7 @@ By default, 100ms live streams and recordings use [100ms pre-built links](../pre Pre-built links are easy to use, but can be limited in customization. Since Beam can open any web app, you can customize the composition UI with HTML/CSS/JavaScript. -You can start from scratch or use the [100ms sample web app](../../../../javascript/v2/quickstart/react-sample-app/quickstart) (which is used by pre-built links) as a starting point for this customization. +You can start from scratch or use the [100ms sample web app](../../../../javascript/v2/quickstart/prebuilt-quickstart) (which is used by pre-built links) as a starting point for this customization. ### Things to note diff --git a/docs/get-started/v2/get-started/security-and-privacy/100ms-policy-on-security-and-privacy.mdx b/docs/get-started/v2/get-started/security-and-privacy/100ms-policy-on-security-and-privacy.mdx index 8d7649db64..189926caa4 100644 --- a/docs/get-started/v2/get-started/security-and-privacy/100ms-policy-on-security-and-privacy.mdx +++ b/docs/get-started/v2/get-started/security-and-privacy/100ms-policy-on-security-and-privacy.mdx @@ -44,6 +44,7 @@ nav: 9.1 - 100ms minimizes collection of Personally Identifiable Information (PII) and has controls in place to prevent PII breaches and unauthorized access. - In addition to access-controls, monitoring, data security controls, 100ms also has third-party disclosure policies in place. - 100ms can provide COPPA (Children's Online Privacy Protection Act) compliant recordings even in multi-student classrooms by implementing custom recording workflows. +- 100ms does not use customer data to train its transcription models. However, it relies on an external service for its summarization feature. No data (customer's or 100ms') is stored, retained, or used for model training by this external service. ## Special Requests - IP whitelists, Data Residency diff --git a/docs/get-started/v2/get-started/security-and-privacy/HIPAA compliance/HIPAA-workspace.mdx b/docs/get-started/v2/get-started/security-and-privacy/HIPAA compliance/HIPAA-workspace.mdx index ad588fe470..b58dc96f08 100644 --- a/docs/get-started/v2/get-started/security-and-privacy/HIPAA compliance/HIPAA-workspace.mdx +++ b/docs/get-started/v2/get-started/security-and-privacy/HIPAA compliance/HIPAA-workspace.mdx @@ -31,7 +31,7 @@ This section outlines 100ms' security framework and technical implementation, co - 100ms does not store your video, audio or screensharing data. - All of 100ms’ video and audio calls are encrypted to and from 100ms’ SFU servers. Encrypted media in transit is decrypted only in the server memory, ensuring that the exposure of the decrypted stream is as minimal as possible. At the application layer, we never have access to unencrypted media. -- All audio, video, and screen sharing media are transmitted encrypted using the Secure Real-time Transport Protocol (SRTP) which are encrypted over Datagram Transport Layer Security (DTLS) with AES 256-bit encryption. +- All audio, video, and screen sharing media are transmitted and encrypted using the Secure Real-time Transport Protocol (SRTP) which is encrypted over Datagram Transport Layer Security (DTLS) with AES 256-bit encryption. - TURN servers are media relay servers only so there is no processing or storage of media. TURN servers do not and cannot decrypt the media that they relay. - Disk encryption is enabled on the servers. @@ -41,6 +41,40 @@ This section outlines 100ms' security framework and technical implementation, co - Recordings, when stored with 100ms, are stored on encrypted disk servers and deleted after 15 days. - **Only for HIPAA Workspaces** - Recording with the customer’s cloud storage bucket configured on 100ms is the only method allowed by 100ms. As soon as the recording for a particular session is complete, it is uploaded to the customers’ storage and immediately deleted from ours. - **Only for HIPAA Workspaces** - Access to customers’ buckets cannot be obtained by 100ms because write-only access is enforced when configuring the customer’s storage bucket. +- In case of a failure of processing or upload of recordings, the failed recordings are stored with 100ms' secure file storage for up to 7 days and reupload is attempted during this period. After 7 days, these files are automatically deleted. + +#### Post call transcription + +- Post call transcription is an opt-in feature, which requires call recording to be enabled by the customer. +- A speaker-labeled transcript is generated upon completion of the call recording. +- Transcripts are generated and processed on 100ms’ servers. No data from the transcription process is used for training any AI models. +- Transcripts are not stored by 100ms once generated. +- The audio file of the recording is securely stored within 100ms’ temporary file storage for up to 14 days in the same region as the customer’s workspace if post call transcription is enabled. This is to ensure that in case of a failure of processing or upload of the recording, transcript or summary, the data is not lost for the customer. After 14 days, the files are automatically deleted. +- The transcript itself is not stored by 100ms. In case of a failure of processing or upload, the transcript is regenerated, and a reupload is attempted. If the reupload is successful, all stored files are promptly deleted. + +#### AI-generated summary + +- AI-generated summary is an opt-in feature, which requires call recording as well as post call transcription to be enabled. +- 100ms uses an external service for generating summaries. A HIPAA Business Associate Agreement (BAA) has been signed between 100ms and the service provider. +- No data is stored by 100ms or the sub-processor providing the service. +- The data is not used for training any AI models. +- Summaries are not stored by 100ms once generated. +- The audio file of the recording is securely stored within 100ms’ temporary file storage for up to 14 days in the same region as the customer’s workspace if post call transcription is enabled. This is to ensure that in case of a failure of processing or upload of the recording, transcript or summary, the data is not lost for the customer. After 14 days, the files are automatically deleted. +- The summary itself is not stored by 100ms. In case of a failure, the transcript and the summary are regenerated, and a reupload is attempted. If the reupload is successful, all stored files are promptly deleted. + +#### Closed captions + +- 100ms uses an external service for speaker-labeled closed captions. +- A HIPAA Business Associate Agreement (BAA) has been signed between 100ms and the service provider. +- No data is stored by 100ms or the sub-processor providing the service. +- The data is not used for training any AI models. + +#### Session Initiation Protocol (SIP) - Audio and Video + +- Media encryption is performed using the **AES_CM_128_HMAC_SHA1_80** cryptographic suite. +- Media is not stored at any point; all transmissions are transient. +- Phone numbers, when used, are masked and securely stored in call logs only. + #### Secure webhooks @@ -129,9 +163,13 @@ Following services and features can be **enabled** and used: 2. Composite Recording with user’s cloud storage bucket configured 1. Recording with the [customer’s cloud storage bucket configured](/get-started/v2/get-started/features/recordings/recording-assets/storage-configuration) on 100ms is the only method allowed by 100ms. As soon as the recording for a particular session is complete, it is uploaded to the customers’ storage and immediately deleted from ours. 2. Access to customers’ buckets cannot be obtained by 100ms because write-only access is enforced when configuring the customer’s storage bucket. -3. Whiteboard -4. Session Initiation Protocol (SIP) (Limited Preview Access) -5. Chat +3. Closed Captions +4. Post Call Transcription +5. AI-Generated Summaries +6. Noise Cancellation +7. Whiteboard +8. Session Initiation Protocol (SIP) - Audio and Video +9. Chat Following services within the template have been **disabled** and locked for the HIPAA Workspace: @@ -140,16 +178,12 @@ Following services within the template have been **disabled** and locked for the 3. Track Recording 4. Stream Recording 5. Live Transcription for HLS -6. Post Call Transcription -7. AI-Generated Summaries Following services are in the process of being HIPAA compliant: -1. Live Transcription (Video Conferencing and HLS) - Diarized and Non-diarized -2. Post Call Transcription - Speaker Labelled (Diarized) -3. AI-Generated Summaries -4. Track Recording -5. Stream Recording +1. Track Recording +2. Stream Recording +3. Custom Composite Recording #### Server Side @@ -291,6 +325,10 @@ Creating and using a HIPAA workspace doesn’t guarantee HIPAA compliance until We have signed BAAs with critical services and features which will have temporary access to the customers’ ePHI. +5. Is there any data stored and retained by 100ms or its sub-professors for the purpose of training any AI models? + + Recordings can be stored with 100ms for upto 7 days, in case of a failure of processing or upload to the customer's configured storage bucket. Transcripts or summaries aren't stored with 100ms and aren't used for training any AI models. + 5. **Can a workspace be deleted?** A workspace cannot be deleted at this point of time. If you do require this, please reach out to us through the support widget on 100ms dashboard. \ No newline at end of file diff --git a/docs/ios/v2/how-to-guides/extend-capabilities/plugins/noise-cancellation.mdx b/docs/ios/v2/how-to-guides/extend-capabilities/plugins/noise-cancellation.mdx index 769c3105d2..504abea731 100644 --- a/docs/ios/v2/how-to-guides/extend-capabilities/plugins/noise-cancellation.mdx +++ b/docs/ios/v2/how-to-guides/extend-capabilities/plugins/noise-cancellation.mdx @@ -29,6 +29,11 @@ let pathForNCModel = HMSNoiseCancellationModels.path(for: .smallFullBand) ## Minimum Requirements - Minimum 100ms SDK version required is `1.7.0` + +**IMPORTANT**
+Enable Noise Cancellation in the template configuration. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) +
+ ## How to enable noise cancellation in your app To enable noise cancellation, you need HMSNoiseCancellationPlugin. Initialise HMSNoiseCancellationPlugin using this path to the AI model. You also pass the initial state of noise cancellation plugin as well. @@ -148,8 +153,7 @@ roomModel.isNoiseCancellationEnabled ## How to check if noise cancellation is enabled in the room -To make noise cancellation work your room needs to have noise cancellation feature enabled. You can check if noise cancellation is enabled using roomModel.isNoiseCancellationAvailable. To enable noise canellation in your rooms, reach out to support@100ms.live or 100ms discord. - +To make noise cancellation work your room needs to have noise cancellation feature enabled. You can check if it is enabled using roomModel.isNoiseCancellationAvailable. ```swift roomModel.isNoiseCancellationAvailable ``` diff --git a/docs/ios/v2/release-notes/release-notes.mdx b/docs/ios/v2/release-notes/release-notes.mdx index 8b486cd8cf..4ea8666c4d 100644 --- a/docs/ios/v2/release-notes/release-notes.mdx +++ b/docs/ios/v2/release-notes/release-notes.mdx @@ -4,6 +4,11 @@ nav: 6.1 description: Release Notes for 100ms iOS SDK --- +## 1.16.2 - 2024-09-20 +### Fixed +- Analytics not getting sent for short sessions + + ## 1.16.1 - 2024-09-02 ### Fixed - Screen share not recovering after long session migration diff --git a/docs/javascript/v2/how-to-guides/extend-capabilities/plugins/krisp-noise-cancellation.mdx b/docs/javascript/v2/how-to-guides/extend-capabilities/plugins/krisp-noise-cancellation.mdx index 41c75ed6be..95d3743599 100644 --- a/docs/javascript/v2/how-to-guides/extend-capabilities/plugins/krisp-noise-cancellation.mdx +++ b/docs/javascript/v2/how-to-guides/extend-capabilities/plugins/krisp-noise-cancellation.mdx @@ -14,6 +14,12 @@ This guide provides an overview of usage of the noise suppression plugin of 100m Minimum version requirement for `hms-video-store` - 0.11.7 + +**IMPORTANT**
+Enable Noise Cancellation in the template configuration. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) +
+ + **Get the 100ms noise cancellation Package** ```bash section=GetHMSNoiseCancellationPackage sectionIndex=1 diff --git a/docs/javascript/v2/quickstart/embed-with-iframe.mdx b/docs/javascript/v2/quickstart/embed-with-iframe.mdx index 0b8a50679c..7de7b4995d 100644 --- a/docs/javascript/v2/quickstart/embed-with-iframe.mdx +++ b/docs/javascript/v2/quickstart/embed-with-iframe.mdx @@ -20,7 +20,7 @@ If you want a quick integration of a fully featured video conferencing/live stre ## Implementation -1. When customising and deploying our sample web app, you can create unique [custom domain room links](/javascript/v2/quickstart/react-sample-app/build-and-deploy) for each role in your room. For instance, custom room links for a self-hosted app with domain "my.video.app" +1. When customising and deploying our sample web app, you can create unique [custom domain room links](/prebuilt/v2/prebuilt/room-codes/room-links#custom-domain-room-links) - host : https://`my.video.app`/meeting/`room-code` - guest : https://`my.video.app`/meeting/`room-code` @@ -40,7 +40,7 @@ Here, [room codes](/get-started/v2/get-started/prebuilt/room-codes/overview) are diff --git a/docs/javascript/v2/quickstart/react-sample-app/build-and-deploy.mdx b/docs/javascript/v2/quickstart/react-sample-app/build-and-deploy.mdx deleted file mode 100644 index 19a57a69b1..0000000000 --- a/docs/javascript/v2/quickstart/react-sample-app/build-and-deploy.mdx +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: Build and Deploy -nav: 1.08 ---- - -## Overview - -Once you have customized the app as per your needs and tested it in your local development environment, you can build and deploy the app to one of your preferred platforms like Vercel, Netlify, AWS, Web server, Docker, etc. - -## Build the app - -[100ms-web](https://github.com/100mslive/100ms-web/) app is just like any react application. To build the app, just run - -```bash -yarn build or -npm build -``` - -If everything goes well, you should see something like this in the terminal. - -```bash -webpack 5.70.0 compiled successfully in 22546 ms -✨ Done in 30.72s. -``` - -All the files that got built in the above step will be in the `build/` directory. This is all we need to deploy. The files are just plain HTML/CSS/JS and could be deployed in many different ways. We discuss some popular ones below. - -## Deploy the code - -There are many ways to deploy 100ms-web. We discuss a few methods below. Please feel free to reach out to us if you don't find your preferred platform here. - -- [Netlify](#netlify) -- [Vercel](#vercel) - -### Netlify - -Deploying 100ms-web to [Netlify](https://www.netlify.com/) is straightforward and same as deploying any project to Netlify. There are two ways to deploy to Netlify: - -#### Deploy via Git (Recommended) - -If you had forked 100ms-web and have customized it, it is highly likely you are using git. If you did, You can directly deploy to Netlify. Netlify supports GitHub, GitLab and Bitbucket. Netlify has great documentation on how to do it. - -- [A Step-by-Step Guide: Deploying on Netlify - ](https://www.netlify.com/blog/2016/09/29/a-step-by-step-guide-deploying-on-netlify/) -- [Netlify Tutorial - Deploying from Git (Video)](https://youtu.be/4h8B080Mv4U) - -#### Deploy the files directly - -If you want to directly upload your files, Netlify provides a very easy drag & drop interface for it. - -- [Netlify Tutorial - Drag and drop deploys on Netlify (Video)](https://youtu.be/etZ9HSUoTPU) - -> We recommend using Git in general if you are planning to use this code for production. Only use the direct method if you want to quickly test something or do some proof-of-concept. - -If you are interested in Netlify's CI/CD or just want to learn more about deploying to Netlify, please check their docs [here](https://docs.netlify.com/site-deploys/create-deploys/) - -### Vercel - -Deploying to Vercel is pretty much straightforward similar to Netlify. - -- You can start with a [New Vercel app](https://vercel.com/new). In that page, import your repository from git, Click next - - ![vercel_wiki_0](/docs/v2/vercel_0.png) - -- In the next page, create a team first - - ![vercel_wiki_1](/docs/v2/vercel_1.png) - -- Then in **Configure Project** section, select **Framework preset** as **Create React App** and then add any extra build settings you want to add. Make sure to add the environment variables for the app below that. For more details See [Environment Variables](https://github.com/100mslive/100ms-web/wiki/Environment-Variables) - - ![vercel_wiki_2](/docs/v2/vercel_2.png) - - > You can change the environment variables any time later in the settings page of your project dashboard. Every time you change a variable, add/remove a variable, you have to rebuild and make a new deployment for the environment variables to take effect. This is a mandatory step and must be done. - -- Now click deploy. Wait for the project to be deployed. Once it's successful, you should see a screen like this - - ![vercel_wiki_3](/docs/v2/vercel_3.png) - -- Click **Go to dashboard**. In the dashboard page, you should be able to see the app by clicking "Visit" button on the deployment screen. Click it to see your app in action. - -That's it. You are all done. diff --git a/docs/javascript/v2/quickstart/react-sample-app/customize-the-app.mdx b/docs/javascript/v2/quickstart/react-sample-app/customize-the-app.mdx deleted file mode 100644 index 6117e79aad..0000000000 --- a/docs/javascript/v2/quickstart/react-sample-app/customize-the-app.mdx +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: Customize Your App -nav: 1.07 ---- - -## Overview - -This [sample app](https://github.com/100mslive/100ms-web) allows UI customization like updating logo, tile aspect ratio, theme, etc. To make these customizations, you can use various environment variables in the env file. - -## Change logo - -You can use `REACT_APP_LOGO` variable to change your logo in the sample app to customize the UI as per your brand. - -**Example:** - -```bash -REACT_APP_LOGO='https://example.com/public/logo.svg' -``` - -## Change tile aspect ratio - -You can use the `REACT_APP_TILE_SHAPE` variable to customize the aspect ratio of video tiles; the format is `width-height`. - -**Examples:** - -- `REACT_APP_TILE_SHAPE='1-1'`: for square tiles -- `REACT_APP_TILE_SHAPE='4-3'`: for landscape tiles -- `REACT_APP_TILE_SHAPE='16-9'`: for wide tiles -- `REACT_APP_TILE_SHAPE='9-16'`: for mobile view - -## Change theme - -- Use the `REACT_APP_THEME` variable to switch the theme between dark and light mode - - **Examples:** - - `REACT_APP_THEME='dark'`: for dark theme - - `REACT_APP_THEME='light'`: for light theme - -## Change font - -You can use `REACT_APP_FONT` variable to update the font used in the app. The font must be imported in your styling for it to work. - -**Example:** - -```bash -REACT_APP_FONT='Roboto' -``` - -## Playlist tracks (watch party) - -- You can play music or videos from a URL for everyone in the room to watch together. The support is only for file formats that are supported by the native audio and video elements, but it's super cool. - -- You can configure the list of audio/video tracks that can be played by a person in the room for everyone as follows: - - - **Example: Audio playlist** - - ```json - REACT_APP_AUDIO_PLAYLIST=[ - { - "name": "Audio1", - "id": "audio1", - "metadata": { "description": "Artist1" }, - "url": "https://d2qi07yyjujoxr.cloudfront.net/webapp/playlist/audio1.mp3", - "type": "audio" - }, - { -
- } - ] - ``` - - - **Example: Video playlist** - - ```json - REACT_APP_VIDEO_PLAYLIST=[ - { - "name": "Video2", - "id": "video2", - "url": "https://d2qi07yyjujoxr.cloudfront.net/webapp/playlist/video2.mp4", - "type": "video" - }, - { -
- } - ] - ``` diff --git a/docs/javascript/v2/quickstart/react-sample-app/quickstart.mdx b/docs/javascript/v2/quickstart/react-sample-app/quickstart.mdx deleted file mode 100644 index 29887e8754..0000000000 --- a/docs/javascript/v2/quickstart/react-sample-app/quickstart.mdx +++ /dev/null @@ -1,124 +0,0 @@ ---- -title: Quickstart Guide -nav: 1.06 ---- - -## Overview - -[100ms-web](https://github.com/100mslive/100ms-web) is a fully featured sample application built using React. This application gives you a ready-made starting point for writing your video apps or customizing the cloned app based on your needs. - -You can use this app to test: - -- **Basic functionalities**: Video calling, Recording, Interactive live streaming (HLS), External streaming (RTMP), Screenshare, and Picture-in-Picture (PiP). -- **Interactive features**: Chat (broadcast, direct, & group), Raise hand. -- **Plugins**: Virtual background, Collaborative whiteboard. - -The app also includes other features and capabilities like custom audio/video tracks, control remote peers, network quality and performance stats, adaptive bitrate (Simulcast), and more. - -The sample app is intended to accelerate development, provide a full reference of all the features and capabilities, and demonstrate implementation with easy-to-read code. - -If you are a developer trying to build an app from scratch, please check our [quickstart guide](/javascript/v2/get-started/react-quickstart). Quickstart provides a simple and quick way to build a reference app and familiarize yourself with the different capabilities of the platform with minimal code. - -## Local development - - - - - -### Set up the app repository - -- Clone the repository from [GitHub](https://github.com/100mslive/100ms-web). - - ```bash section=cloneRepo sectionIndex=1 - git clone git@github.com:100mslive/100ms-web.git - ``` - -- Change your working directory to `100ms-web`. - - ```bash section=cloneRepo sectionIndex=2 - cd 100ms-web - ``` - -- Install the dependencies using `npm` or `yarn`. - - ```bash section=cloneRepo sectionIndex=3 - npm install or - yarn install - ``` - -### Configure auth token endpoint - -- Set environment variables to configure token generation endpoint. Use the following command to copy the values from "example.env" to a new file called ".env". - - ```bash section=envVariable sectionIndex=1 - cp example.env .env - ``` - -- Update the 100ms token endpoint as an environment variable to handle auth token generation. You can get your token endpoint from the [Developer section of 100ms' Dashboard](https://dashboard.100ms.live/developer). - - ![token endpoint](https://user-images.githubusercontent.com/11087313/140727818-43cd8be4-b3bf-4b34-9921-a77f9a1b819d.png) - - **Example**: - - ```bash - REACT_APP_TOKEN_GENERATION_ENDPOINT = 'https://prod-in2.100ms.live/hmsapi/example.app.100ms.live/' - ``` - -### Start and test the app - -#### Start the app - -- Start the app with the below command. - - ```bash section=runApp sectionIndex=1 - npm start or - yarn start - ``` - -- The app should now be running at [http://localhost:3000/](http://localhost:3000/). You should see a welcome message saying, "Almost There!". - -#### Create and join a room - -- To test audio/video functionality, you need to connect to a 100ms room; please check following steps for the same: - - 1. Navigate to your [100ms Dashboard](https://dashboard.100ms.live/dashboard) or [create an account](https://dashboard.100ms.live/register) if you don't have one. - 2. To test this app quickly, use the "Video Conferencing Starter Kit" to create a room with a default template assigned to it. - 3. Go to [Rooms page](https://dashboard.100ms.live/rooms) in your Dashboard, copy the "Room Id" of the room and role created in the above step. - 4. Add the "Room Id" and role to the localhost URL to test the app. For example, `http://localhost:3000/633fcdd84208780bf665346a/host` - -
- -
- -
- -## Next steps - -#### [Customize the app](/javascript/v2/get-started/react-sample-app/customize-the-app) - -Customize your UI like updating logo, tile aspect ratio, theme, etc. as per your brand. - -#### [Build and deploy](/javascript/v2/get-started/react-sample-app/build-and-deploy) - -Building and deploying the 100ms sample app is simple and the same as any React project. You can deploy this to Vercel, Netlify, AWS, Web server, Docker, etc., as you prefer. - -#### [iframe integration](/javascript/v2/get-started/react-sample-app/embed-with-iframe) - -You can use the [deployed](/javascript/v2/get-started/react-sample-app/build-and-deploy) URL in an iframe to embed the whole sample app inside your UI. - -#### [Code structure](https://github.com/100mslive/100ms-web/wiki/code-structure) - -Check the overall project structure of the sample app to understand how the code is organized and understand various components of the app. - -#### [Simple quickstart](/javascript/v2/get-started/react-quickstart) - -Please check our quickstart guide if you're trying to get started with 100ms with a basic app. diff --git a/docs/javascript/v2/release-notes/release-notes.mdx b/docs/javascript/v2/release-notes/release-notes.mdx index addebe3192..8b06ad1fa3 100644 --- a/docs/javascript/v2/release-notes/release-notes.mdx +++ b/docs/javascript/v2/release-notes/release-notes.mdx @@ -16,6 +16,20 @@ description: Release Notes for 100ms JavaScript SDK | @100mslive/hms-virtual-background | [![npm version](https://badge.fury.io/js/%40100mslive%2Fhms-virtual-background.svg)](https://badge.fury.io/js/%40100mslive%2Fhms-virtual-background) | +## 2024-09-09 + +Released: `@100mslive/hms-video-store@0.12.19`, `@100mslive/react-sdk@0.10.19`, `@100mslive/hls-player@0.3.19`, `@100mslive/roomkit-react@0.3.19`, `@100mslive/hms-whiteboard@0.0.9`, `@100mslive/hms-virtual-background@1.13.19` + +### Added: +- You can import `HMSVBPlugin` or `HMSEffectsPlugin` from `@100mslive/hms-virtual-background` whichever is needed with subpath import + +### Fixed: +- Microphone not getting released on Android browsers on leave due to a race condition +- Improve interruption handling +- Fix video flickering when opened from two tabs in iOS +- Play/Pause icon showing on video elements in low power mode on iOS/MacOS Safari +- Roomkit Prebuilt: Crashing in MacOS Safari 14 + ## 2024-08-16 Released: `@100mslive/hms-video-store@0.12.18`, `@100mslive/react-sdk@0.10.18`, `@100mslive/hls-player@0.3.18`, `@100mslive/roomkit-react@0.3.18`, `@100mslive/hms-whiteboard@0.0.8`, `@100mslive/hms-virtual-background@1.13.18` diff --git a/docs/prebuilt/v2/prebuilt/Appearance.mdx b/docs/prebuilt/v2/prebuilt/Appearance.mdx index 3ddde19cf7..2f44f93184 100644 --- a/docs/prebuilt/v2/prebuilt/Appearance.mdx +++ b/docs/prebuilt/v2/prebuilt/Appearance.mdx @@ -9,7 +9,7 @@ Head to [100ms dashboard](https://dashboard.100ms.live/dashboard), choose an exi ## Changing Logo -You can easily replace the default logo that appears on the Prebuilt interface with your own logo. To do this, click on "Logo" input field and provide the URL of your custom logo image. Ensure that the image meets your desired dimensions. The supported image format is .png. For best results, upload an image with a transparent background. +You can easily replace the default logo that appears on the Prebuilt interface with your own logo. To do this, click on "Logo" input field and upload your custom logo image. Ensure that the image meets your desired dimensions. The supported image format is .png. For best results, upload an image with a transparent background.
diff --git a/docs/prebuilt/v2/prebuilt/Screens-and-components.mdx b/docs/prebuilt/v2/prebuilt/Screens-and-components.mdx index e0eb2ea1ad..5d2fd0d450 100644 --- a/docs/prebuilt/v2/prebuilt/Screens-and-components.mdx +++ b/docs/prebuilt/v2/prebuilt/Screens-and-components.mdx @@ -22,13 +22,33 @@ By default, components are enabled based on the role associated with the use cas ### Preview Screen +The Prebuilt preview screen offers a set of components designed to enhance the initial set-up before joining a room. Choose a role to kickstart your customization journey. -#### Header +##### Header Set up a custom header for each roles using Title and Subtitle fields. -#### Join +##### Join Choose how peers join the room - - **Join Now** - Peers from this role will see "Join Now" and would be able join after entering their name. - - **Join and Start Streaming** - Peers from this role will see "Go Live" and would be able to join and start streaming when they join the room. Ensure that this role has the permission to "Start/Stop HLS streaming" as `enabled` under Role permissions on its template configuration. + - **Join Now** - Peers from this role will see 'Join Now' and would be able join after entering their name. + - **Join and Start Streaming** - Peers from this role will see 'Go Live' and would be able to join and start streaming when they join the room. Ensure that this role has the permission to 'Start/Stop HLS streaming' as `enabled` under Role permissions on its template configuration. + +##### Skip Preview + - Turn the toggle to enable or disable skipping the preview screen. + - **Enabled**: When this option is enabled, the preview screen is skipped, and the user is taken directly to the room screen. + + When skip preview is enabled, ensure that the username is passed in the prebuilt links or in the options in the prebuilt component. If not provided, the system will generate a random UUID as the peer's name. + + +##### Noise Cancellation State + - Turn the toggle to define the initial state for Noise Cancellation. + - **Enabled**: When this option is enabled, Noise Cancellation will be turned on by default in preview screen for all the peers of this role. + + Noise Cancellation should be enabled from 'Advanced Settings' under the Template to enable this setting. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) + + +##### Virtual Background + - Turn the toggle to enable virtual background for this role. Click on 'Upload Image' to add your own image as backgrounds. + Head over [Virtual Background](/prebuilt/v2/prebuilt/virtual-background) for more details. + ### Room Screen The Prebuilt room screen offers a set of components designed to enhance interactivity within a room. Choose a role to kickstart your customization journey. @@ -36,68 +56,104 @@ The Prebuilt room screen offers a set of components designed to enhance interact #### Chat Toggle the chat functionality on or off for a specific role. When chat is disabled for a role, that role won't have access to the chat component within the room. If enabled, you can further fine-tune and customize the functionalities of the Prebuilt UI for chat. -##### Initial State -This setting determines whether the chat component is initially open or closed when a participant joins a session. Keeping the initial state as open can be particularly useful when using the chat overlay view on mobile devices. +##### Chat UI +Customize the prebuilt chat UI + +- ###### Chat Panel Name and Message Placeholder + This setting lets you rename the chat panel name and message placeholder as per your design + +- ###### Initial State + This setting determines whether the chat component is initially open or closed when a participant joins a session. Keeping the initial state as open can be particularly useful when using the chat overlay view on mobile devices. + +- ###### Enable Overlay View + In an overlay view, the chat component overlays on top of video tiles, delivering an immersive chat experience for mobile livestreaming scenarios. Please note that this chat view is exclusively available on mobile devices and is not supported on large-screen applications. + +##### Chat Controls +Customize the prebuilt chat controls -##### Enable Overlay View -In an overlay view, the chat component overlays on top of video tiles, delivering an immersive chat experience for mobile livestreaming scenarios. Please note that this chat view is exclusively available on mobile devices and is not supported on large-screen applications. +- ###### Allow Pinning messages + Enabling this feature allows the selected role to pin important chat messages on the chat component, making them visible to everyone. -##### Allow Pinning messages -Enabling this feature allows the selected role to pin important chat messages on the chat component, making them visible to everyone. +- ###### Allow hiding messages + Enabling this feature allows the selected role to hide the unwanted chat messages, making it invisible to everyone. +- ###### Allow blocking peers in chat + Enabling this feature allows the selected role to block the peer from sending any messages in the chat. -#### Participant List +- ###### Allow pausing chat + Enabling this feature allows the selected role to pause the chat messages during the session, once paused no peer can send any messages in the chat until it is resumed. + +- ###### Public chat + Enabling this feature allows the selected role to send the chat messages as public and everyone in the room can view these messages. + +- ###### Private chat + Enabling this feature allows the selected role to send the chat messages as private to everyone in the room which has the permission to send pricate messages. + +- ###### Role-specific chat + Enabling this feature allows the selected role to send the chat messages to another selected roles + + +##### Participant List Ensure participant list accessibility for roles that require visibility. In certain scenarios, such as large room viewers, there may be no need for them to view other participants, but Hosts or Broadcasters might find it essential to maintain oversight of the participant list. By default, the participant list is enabled for all roles across all templates. -#### Video Tile Layout +##### Video Tile Layout 100ms Prebuilt UI allows tweaks on its default grid layout and supports multiple video layouts. -##### Enable local tile inset -Enabling this makes the local peer's *(for the selected role)* tile in a smaller inset window as default, alternatively if it's disabled, the local tile will be part of the grid view. Join with at least two peers to preview this configuration in action. +- ###### Enable local tile inset + Enabling this makes the local peer's *(for the selected role)* tile in a smaller inset window as default, alternatively if it's disabled, the local tile will be part of the grid view. Join with at least two peers to preview this configuration in action. + +- ###### Prominent roles + Defining one or more roles as prominent gives them higher tile view prominence for the selected role. For example: + - For a 1:1 call, define Host as prominent tile for Guest and vice-versa. + - For a webinar, set Host as the prominent tile for all other roles. Every role would see Host as the primary tile in the room + - For a mobile-first livestreaming view, set Broadcaster as prominent tile for every other role, including Broadcaster themselves. -##### Prominent roles -Defining one or more roles as prominent gives them higher tile view prominence for the selected role. For example: -- For a 1:1 call, define Host as prominent tile for Guest and vice-versa. -- For a webinar, set Host as the prominent tile for all other roles. Every role would see Host as the primary tile in the room -- For a mobile-first livestreaming view, set Broadcaster as prominent tile for every other role, including Broadcaster themselves. +- ###### Can spotlight peer + Allow this config for roles who can spotlight others or themselves in the room. Spotlighting a tile reflects for everyone in the room. -##### Can spotlight peer -Allow this config for roles who can spotlight others or themselves in the room. Spotlighting a tile reflects for everyone in the room. + + Assigning a role as 'prominent' for either themselves or other roles establishes a fixed layout that remains unchanged for the entire session. This is particularly well-suited for scenarios where a specific role needs to maintain a constant presence, as seen in webinars and livestreaming. Conversely, spotlighting either their own tile or the tiles of others permits specific participant tiles to temporarily take center stage within the session, allowing for more adaptable layout adjustments as needed + - -Assigning a role as "prominent" for either themselves or other roles establishes a fixed layout that remains unchanged for the entire session. This is particularly well-suited for scenarios where a specific role needs to maintain a constant presence, as seen in webinars and livestreaming. Conversely, spotlighting either their own tile or the tiles of others permits specific participant tiles to temporarily take center stage within the session, allowing for more adaptable layout adjustments as needed. - +- ###### Tiles in view + Select the default number of video tiles that a peer will view in a room. For optimal performance it is recommended to keep it at 9. + + This setting is currently only supported on web. + -#### Be Right Back (BRB) +##### Be Right Back (BRB) Depending on your use case, allow roles to set themselves on BRB mode. If disabled, this component will not be visible to the selected role. -#### Emoji Reactions +##### Emoji Reactions Enabling this for a role allows its peers to send emoji reactions in the room. -#### Bring others on Stage +##### Hand Raise +Allows participants with this role to virtually raise their hand during a session, indicating their intention to: request attention or assistance, signal a question or comment, or request to join the stage (if 'Bring others on stage' is enabled). If 'Bring others on stage' is enabled, raising a hand will prompt the session host or moderator to consider changing the participant's role, allowing them to join the stage and actively participate. If 'Bring others on stage' is disabled, the hand raise will serve as a visual cue without any automatic role change. The session host or moderator can acknowledge the raised hand and address the participant's need accordingly. + +##### Bring others on Stage Stage is a virtual space within a room that enables participants to actively engage with their audio and video, and publish it with a much larger audience. With the 'Bring on Stage' feature enabled, viewers who are not on stage can easily interact with the participants on stage, once they have been granted access to the stage. Enable Bring on stage for roles that require the ability to allow or deny stage requests from off-stage participants. By default, this feature is enabled for Hosts, Broadcasters and Co-broadcasters, while viewers with non-publishing roles can use the hand-raise option to request stage access. This component can extend its support to conferencing, webinars and livestreaming scenarios. However, if your use case does not require this feature, you can simply disable it to ensure a seamless experience for all users. -##### Bring on Stage Label +- ###### Bring on Stage Label -Customize text label that Hosts and Broadcasters will see when they receive on stage requests. The default text is "Bring to stage". + Customize text label that Hosts and Broadcasters will see when they receive on stage requests. The default text is "Bring to stage". -##### Remove from Stage Label +- ###### Remove from Stage Label -Customize text label that Hosts and Broadcasters will see when they receive on stage requests. The default text is "Remove from stage". + Customize text label that Hosts and Broadcasters will see when they receive on stage requests. The default text is "Remove from stage". -##### On Stage and Off Stage Role -An off stage participant becomes an on stage participant once their stage access has been accepted. For instance, an off stage role, say Viewer requests a Broadcaster to go on stage. Once their request is accepted, the Viewer can transition to an on stage role, which could be a Viewer-on-stage, a Guest, or a Co-broadcaster. +- ###### On Stage and Off Stage Role + An off stage participant becomes an on stage participant once their stage access has been accepted. For instance, an off stage role, say Viewer requests a Broadcaster to go on stage. Once their request is accepted, the Viewer can transition to an on stage role, which could be a Viewer-on-stage, a Guest, or a Co-broadcaster. -Let's take a quick example to understand this better. + Let's take a quick example to understand this better. -Assume a livestreaming scenario with Bring on stage enabled for Broadcasters and Co-Broadcasters, where -- Off-stage participants have been assigned role: Viewer a role with no audio/video publish permissions -- On-stage participants have been assigned role : Guest, a role with audio/video publish permissions + Assume a livestreaming scenario with Bring on stage enabled for Broadcasters and Co-Broadcasters, where + - Off-stage participants have been assigned role: Viewer a role with no audio/video publish permissions + - On-stage participants have been assigned role : Guest, a role with audio/video publish permissions -Once the configuration is set under Bring on stage, join Prebuilt links or apps as these roles: Broadcaster, Co-Broadcaster and Viewer to try bring on stage feature like below: -1. Participants from Viewer role can choose to raise their hand during a session to request to go on stage and interact with Broadcaster(s) and Co-Broadcaster(s) -2. Broadcaster(s) and Co-Broadcaster(s) will receive stage access notification from these off-stage partcipants; where they can choose to accept or deny the stage request. Meanwhile, a Viewer can choose to lower their hand untill their request has been accepted or denied. Broadcaster(s) can also track all such requests under "Hand Raise" section under participant list. -3. When a Broadcaster accepts a stage request from a Viewer(an off-stage participant), the Viewer becomes a Guest (an on-stage participant) as per the configuration set -4. Broadcaster(s) can choose to mute/unmute audio/video for Guest or simply remove them from stage. + Once the configuration is set under Bring on stage, join Prebuilt links or apps as these roles: Broadcaster, Co-Broadcaster and Viewer to try bring on stage feature like below: + 1. Participants from Viewer role can choose to raise their hand during a session to request to go on stage and interact with Broadcaster(s) and Co-Broadcaster(s) + 2. Broadcaster(s) and Co-Broadcaster(s) will receive stage access notification from these off-stage partcipants; where they can choose to accept or deny the stage request. Meanwhile, a Viewer can choose to lower their hand untill their request has been accepted or denied. Broadcaster(s) can also track all such requests under "Hand Raise" section under participant list. + 3. When a Broadcaster accepts a stage request from a Viewer(an off-stage participant), the Viewer becomes a Guest (an on-stage participant) as per the configuration set + 4. Broadcaster(s) can choose to mute/unmute audio/video for Guest or simply remove them from stage. diff --git a/docs/react-native/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx b/docs/react-native/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx index 7ad0253911..d348acdbe1 100644 --- a/docs/react-native/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx +++ b/docs/react-native/v2/how-to-guides/extend-capabilities/noise-cancellation.mdx @@ -21,7 +21,11 @@ The Noise Cancellation feature employs a sophisticated AI model trained specific `@100mslive/react-native-hms` version 1.10.2 or later is required to utilize the Noise Cancellation feature in your React Native application. -Also, this feature has gated access currently. To enable Noise Cancellation in your rooms, reach out to **support@100ms.live** or connect with us on [100ms Discord](https://discord.com/invite/kGdmszyzq2). + +**IMPORTANT**
+Enable Noise Cancellation in the template configuration. Learn more about enabling this feature from [here](/get-started/v2/get-started/features/noise-cancellation#enabling-the-noise-cancellation) +
+ ## Usage diff --git a/docs/react-native/v2/quickstart/token-endpoint.mdx b/docs/react-native/v2/quickstart/token-endpoint.mdx deleted file mode 100644 index 051b0b7bc9..0000000000 --- a/docs/react-native/v2/quickstart/token-endpoint.mdx +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Auth Token Endpoint Guide -nav: 2.5 ---- - -## Overview - -100ms provides an option to get `Auth Tokens` without setting up a token generation backend service to simplify your integration journey while testing the [sample app](https://github.com/100mslive/100ms-web) or building integration with 100ms. - -You can find the token endpoint from the [developer page](https://dashboard.100ms.live/developer) in your 100ms dashboard. - -![Token endpoint](/guides/token-endpoint-dashboard.png) - -We recommend you move to your token generation service before you transition your app to production, as our token endpoint service will not scale in production. - -The "Sample Apps" built using 100ms client SDKs require an `Auth Token` to join a room to initiate a video conferencing or live streaming session. Please check the [Authentication and Tokens guide](/react-native/v2/foundation/security-and-tokens) - -Please note that you cannot use the token endpoint to create a `Management Token` for server APIs. Refer to the [Management Token section](/react-native/v2/foundation/security-and-tokens#management-token) in Authentication and Tokens guide for more information. - -## Get an auth token using token endpoint - -You can use the token endpoint from your 100ms dashboard while building integration with 100ms. This acts as a tool enabling front-end developers to complete the integration without depending on the backend developers to set up a token generation backend service. - -**URL format:** `api/token` - -100ms token endpoint can generate an Auth token with the inputs passed, such as room_id, role, & user_id (optional - your internal user identifier as the peer's user_id). You can use [jwt.io](https://jwt.io/) to validate whether the Auth token contains the same input values. - - - - -```bash -curl --location --request POST 'https://prod-in2.100ms.live/hmsapi/johndoe.app.100ms.live/api/token' \ ---header 'Content-Type: application/json' \ ---data-raw '{ - "room_id":"633fcdd84208780bf665346a", - "role":"host", - "user_id":"1234" -}' -``` - - - - -```json -{ - "token": "eyJ0eXAiOiJKV1QiLCJhbGciOi***************************R3tT-Yk", - "msg": "token generated successfully", - "status": 200, - "success": true, - "api_version": "2.0.192" -} -``` - - - -### Example client-side implementation - -You can directly add this to your client-side implementation, check our [sample app](https://github.com/100mslive/react-native-hms/blob/7bd6420ea49d520acd881de9ac5d76b36498bb67/example/src/services/index.ts#L3) for reference. - -### Disable 100ms token endpoint - -Due to some security concerns, if you don't wish to use the token endpoint to generate Auth tokens, then you can disable it on the [Developers page](https://dashboard.100ms.live/developer) on your dashboard by disabling the option "Disable <room_id>/<role> link format." - -![Disable Token endpoint](/guides/disable-token-endpoint.png) - -#### Error Response - -Once you're disabled it on the dashboard, the requests to create an Auth token using the 100ms token endpoint will throw the below error: - -```json -{ - "success": false, - "msg": "Generating token using the room_id and role is disabled.", - "api_version": "2.0.192" -} -``` diff --git a/docs/server-side/v2/how-to-guides/Session Initiation Protocol (SIP)/SIP-DTMF-transmission.mdx b/docs/server-side/v2/how-to-guides/Session Initiation Protocol (SIP)/SIP-DTMF-transmission.mdx index 1ec88dc894..fdb41872cf 100644 --- a/docs/server-side/v2/how-to-guides/Session Initiation Protocol (SIP)/SIP-DTMF-transmission.mdx +++ b/docs/server-side/v2/how-to-guides/Session Initiation Protocol (SIP)/SIP-DTMF-transmission.mdx @@ -39,7 +39,7 @@ The DTMF API provided by 100ms enables the transmission of DTMF tones directly t | Parameter | Type | Description | |-----------|-------|-----------------------------------------------------------------------------------------------------------------------------| -| digits | array | An array of strings, where each string is a character representing a DTMF tone. Valid characters are 0-9, *, #, a, b, c, d. | +| digits | array | An array of strings, where each string is a character representing a DTMF tone. Valid characters are 0-9, *, #, a, b, c, d | - **Target Recipients:** The DTMF tones will only be sent to all SIP participants present in the call. WebRTC participants will not receive these tones. - **Transmission Order:** Requests are queued and processed sequentially; subsequent requests will not be processed until all previous tones have been sent. @@ -54,16 +54,23 @@ The DTMF API provided by 100ms enables the transmission of DTMF tones directly t ``` -**400 Bad Request** - When the request is invalid. +**400 Bad Request** - When the request is invalid due to non-acceptable digit. ```json { - "code": 400, - "message": "no sip participants in the call", - "details": [""] + "code": 400, + "message": "invalid digit" } ``` +**400 Bad Request** - When the request is invalid due to missing digits + +```json +{ + "code": 400, + "message": "digits are mandatory" +} +``` This documentation provides a clear pathway for integrating DTMF transmission capabilities within your applications, ensuring effective interaction with systems requiring numerical input during SIP calls. \ No newline at end of file diff --git a/docs/server-side/v2/how-to-guides/configure-webhooks/webhook.md b/docs/server-side/v2/how-to-guides/configure-webhooks/webhook.md index f59301b617..291e659a4b 100644 --- a/docs/server-side/v2/how-to-guides/configure-webhooks/webhook.md +++ b/docs/server-side/v2/how-to-guides/configure-webhooks/webhook.md @@ -138,19 +138,20 @@ This event will be sent when any peer joins the room successfully #### Attributes -| Name | Type | Description | -| :----------------- | :------------------- | :------------------------------------------------------------------------------------------------------ | -| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | -| room_name | `string` | Room name provided when creating the room

Example: Test Room | -| session_id | `string` | 100ms assigned id to identify the session

Example: 5f9edc6bd238215aec7700df | -| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | -| user_id | `string` | User id assigned by the customer

Example: user.001 | -| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | -| user_name | `string` | User name of the joining user

Example: Test user | -| user_data | `string` | User data of the joining user

Example: `{"isHandRaised":true}` | -| role | `string` | Role of the joining user

Example: host | -| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | -| session_started_at | `timestamp (in UTC)` | Timestamp when session started

Example: 2020-11-11T16:32:17Z | +| Name | Type | Description | +|:-------------------|:---------------------|:------------------------------------------------------------------------------------------------------------------------------| +| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | +| room_name | `string` | Room name provided when creating the room

Example: Test Room | +| session_id | `string` | 100ms assigned id to identify the session

Example: 5f9edc6bd238215aec7700df | +| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | +| user_id | `string` | User id assigned by the customer

Example: user.001 | +| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | +| user_name | `string` | User name of the joining user

Example: Test user | +| user_data | `string` | User data of the joining user

Example: `{"isHandRaised":true}` | +| role | `string` | Role of the joining user

Example: host | +| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | +| session_started_at | `timestamp (in UTC)` | Timestamp when session started

Example: 2020-11-11T16:32:17Z | +| type | `string` | Defines the type of peer to join the room. It is 'sip' for peers joining through SIP and 'regular' for peers joining directly | #### Sample `peer.join.success` event @@ -169,6 +170,7 @@ This event will be sent when any peer joins the room successfully "room_name": "**********", "session_id": "************************", "template_id": "************************", + "type": "regular", "user_id": "************************", "user_name": "********", "user_data": "", @@ -200,6 +202,7 @@ This event will be sent when peer leaves the room | message | `string` | Reason specified while kicking peer out of room, see more details below

Example: removed due to misconduct | | joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | | session_started_at | `timestamp (in UTC)` | Timestamp when session started

Example: 2020-11-11T16:32:17Z | +| type | `string` | Defines the type of peer to join the room. It is 'sip' for peers joining through SIP and 'regular' for peers joining directly | #### Peer Leave Reason @@ -246,6 +249,7 @@ This event will be sent when peer leaves the room "room_name": "**********", "session_id": "************************", "template_id": "************************", + "type": "regular", "user_id": "************************", "user_name": "********", "user_data": "", @@ -263,18 +267,19 @@ This event will be sent when a peer fails to join a room. This can occur when, #### Attributes -| Name | Type | Description | -| :------------ | :------------------- | :------------------------------------------------------------------------------------------------------ | -| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | -| room_name | `string` | Room name provided when creating the room

Example: Test Room | -| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | -| user_id | `string` | User id assigned by the customer

Example: user.001 | -| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | -| user_name | `string` | User name of the user

Example: Test user | -| user_data | `string` | User data of the user

Example: `{"isHandRaised":true}` | -| role | `string` | Role of the user

Example: host | -| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | -| error_message | `string` | Reason for failure

Example: Peer not joined | +| Name | Type | Description | +|:--------------|:---------------------|:------------------------------------------------------------------------------------------------------------------------------| +| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | +| room_name | `string` | Room name provided when creating the room

Example: Test Room | +| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | +| user_id | `string` | User id assigned by the customer

Example: user.001 | +| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | +| user_name | `string` | User name of the user

Example: Test user | +| user_data | `string` | User data of the user

Example: `{"isHandRaised":true}` | +| role | `string` | Role of the user

Example: host | +| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | +| error_message | `string` | Reason for failure

Example: Peer not joined | +| type | `string` | Defines the type of peer to join the room. It is 'sip' for peers joining through SIP and 'regular' for peers joining directly | #### Peer join failure Reason @@ -299,6 +304,7 @@ This event will be sent when a peer fails to join a room. This can occur when, "room_name": "**********", "user_id": "************************", "template_id": "************************", + "type": "regular", "user_name": "********", "user_data": "", "error_message": "role not allowed" @@ -316,20 +322,21 @@ This event will be sent when the peer leave fails. This can occur when, #### Attributes -| Name | Type | Description | -| :------------ | :------------------- | :------------------------------------------------------------------------------------------------------ | -| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | -| room_name | `string` | Room name provided when creating the room

Example: Test Room | -| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | -| user_id | `string` | User id assigned by the customer

Example: user.001 | -| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | -| user_name | `string` | User name of the user

Example: Test user | -| user_data | `string` | User data of the user

Example: `{"isHandRaised":true}` | -| role | `string` | Role of the user

Example: host | -| left_at | `timestamp (in UTC)` | Timestamp when user left

Example: 2020-11-11T17:32:17Z | -| duration | `int` | Duration the user spent in the room in seconds

Example: 36000 | -| error_message | `string` | Reason for failure

Example: Peer not joined | -| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | +| Name | Type | Description | +|:--------------|:---------------------|:------------------------------------------------------------------------------------------------------------------------------| +| room_id | `string` | 100ms assigned room id

Example: 5f9edc6ac238215aec2312df | +| room_name | `string` | Room name provided when creating the room

Example: Test Room | +| peer_id | `string` | 100ms assigned id to identify the joining user

Example: bd0c76fd-1ab1-4d7d-ab8d-bbfa74b620c4 | +| user_id | `string` | User id assigned by the customer

Example: user.001 | +| template_id | `string` | Template ID of the room

Example: 66112497abcd52312556c4gg | +| user_name | `string` | User name of the user

Example: Test user | +| user_data | `string` | User data of the user

Example: `{"isHandRaised":true}` | +| role | `string` | Role of the user

Example: host | +| left_at | `timestamp (in UTC)` | Timestamp when user left

Example: 2020-11-11T17:32:17Z | +| duration | `int` | Duration the user spent in the room in seconds

Example: 36000 | +| error_message | `string` | Reason for failure

Example: Peer not joined | +| joined_at | `timestamp (in UTC)` | Timestamp when user joined

Example: 2020-11-11T16:32:17Z | +| type | `string` | Defines the type of peer to join the room. It is 'sip' for peers joining through SIP and 'regular' for peers joining directly | #### Peer leave failure Reason @@ -354,6 +361,7 @@ This event will be sent when the peer leave fails. This can occur when, "room_name": "**********", "user_id": "************************", "template_id": "************************", + "type": "regular", "user_name": "********", "user_data": "", "error_message": "Peer not joined" diff --git a/docs/server-side/v2/how-to-guides/enable-transcription-and-summary.mdx b/docs/server-side/v2/how-to-guides/enable-transcription-and-summary.mdx index c6a26f05a1..eb8807afe0 100644 --- a/docs/server-side/v2/how-to-guides/enable-transcription-and-summary.mdx +++ b/docs/server-side/v2/how-to-guides/enable-transcription-and-summary.mdx @@ -1,9 +1,9 @@ --- -title: Enable Transcription and Summarisation +title: Post Call Transcription and Summarization nav: 6 --- -This is a guide to enable 100ms **post call transcription** with **speaker labels** and **AI-generated summary**. The feature is currently in `Beta`. +This is a guide to enable 100ms **post call transcription** with **speaker labels** and **AI-generated summary**. In case you're looking to enable **live transcription**, refer to this [documentation](/server-side/v2/how-to-guides/live-transcription-hls). @@ -35,7 +35,7 @@ The above flowchart shows the entire workflow of transcript and summary generati You can enable transcription for all the rooms under a particular template. 1. Access an existing template via the sidebar. -2. Navigate to the `Transcription (Beta)` tab in the template configuration. +2. Navigate to the `Transcription` tab in the template configuration. 3. In the second card which says `Post Call Transcription`, enable the `Transcribe Recordings` toggle. 4. Enabling `Post Call Transcription` will expose an extra configuration called `Output Modes` just below the toggle. File format of the transcript output can be set using this. Following file formats are offered: - Text (.txt) @@ -43,7 +43,7 @@ You can enable transcription for all the rooms under a particular template. - Structured (.json) The example output for the above can be seen [here](#example-output-files). -5. In the same card, enable the `Summarise Transcripts` toggle. This will take the default settings for summary. +5. In the same card, enable the `Summarize Transcripts` toggle. This will take the default settings for summary. 6. Save the configuration. 7. Join a room to initiate a session. Start recording (or live stream with recording enabled) using the SDK or API. If it's your first time joining a 100ms room, you'll find the option to `Start Recording` in the created room. For more information on creating room templates, refer to [this documentation](/server-side/v2/api-reference/policy/create-template-via-dashboard). @@ -309,7 +309,11 @@ You can always use 100ms’ Recording Assets API to access the transcripts and s This is not possible at this point of time. But we intend to bring the functionality of re-running transcription and summarization functions to enable users to test and build their own summaries. -4. **What can be done if the speaker label is not working?** +4. Is this a chargeable feature? + + Yes, these are chargeable features. To know more, check our [pricing page](http://100ms.live/pricing). + +5. **What can be done if the speaker label is not working?** There are two possible options here: 1. If you are using an older webSDK version, please update to the latest. Refer to our web documentation [here](/javascript/v2/release-notes/release-notes). diff --git a/lib/publishEvents.ts b/lib/publishEvents.ts new file mode 100644 index 0000000000..4e69a5383f --- /dev/null +++ b/lib/publishEvents.ts @@ -0,0 +1,154 @@ +import * as amplitude from '@amplitude/analytics-browser'; +import { getUtmParams } from './getUtmParams'; +import { currentUser } from './currentUser'; + +const getCommonOptions = () => ({ + dashboard_version: process.env.REACT_APP_DASHBOARD_VERSION, + events_protocol: process.env.REACT_APP_EVENTS_PROTOCOL, + timestamp: new Date().toString(), + platform: '100ms-docs', + ...getUtmParams() +}); + +// page analytics + +const hubspotPageView = () => { + const path = window.location.pathname; + // eslint-disable-next-line @typescript-eslint/naming-convention, no-underscore-dangle, no-multi-assign + const _hsq = (window._hsq = window._hsq || []); + if (_hsq) { + _hsq.push(['setPath', path]); + _hsq.push(['trackPageView']); + } +}; + +// identify analytics +const hubspotIdentify = ({ properties }: { properties: {} }) => { + // eslint-disable-next-line @typescript-eslint/naming-convention, no-underscore-dangle, no-multi-assign + const _hsq = (window._hsq = window._hsq || []); + if (_hsq) { + _hsq.push(['identify', { properties }]); + } +}; + +export const analyticsStore: { + data: { workspaceOwnerEmail: null }; + set: (payload: {}) => void; + get: () => {}; +} = { + data: { workspaceOwnerEmail: null }, + set: (payload) => { + for (const index in payload) { + if (Object.prototype.hasOwnProperty.call(payload, index)) { + analyticsStore.data[index] = payload[index]; + } + } + }, + get: () => analyticsStore?.data +}; + +const analyticsTrack = (title, options) => { + try { + const user = currentUser(); + if (!user) { + amplitude.track({ + event_type: title, + event_properties: { + ...getCommonOptions(), + ...options + } + }); + } else if (user && !user.is_admin) { + amplitude.track({ + event_type: title, + event_properties: { + email: user.email, + customer_id: user.customer_id, + + workspaceOwnerEmail: (analyticsStore.get() as { workspaceOwnerEmail: string }) + ?.workspaceOwnerEmail, + api_version: user.api_version, + ...getCommonOptions(), + ...options + } + }); + } + } catch (e) { + console.error(e); + } +}; + +const analyticsPage = (title, options) => { + const user = currentUser(); + if (!user) { + try { + hubspotPageView(); + } catch (e) { + console.error(e); + } + try { + window.analytics.page(title, { + ...getCommonOptions(), + ...options + }); + } catch (e) { + console.error(e); + } + } else if (user && !user.is_admin) { + try { + window.analytics.page(title, { + email: user.email, + customer_id: user.customer_id, + api_version: user.api_version, + ...getCommonOptions(), + ...options + }); + } catch (e) { + console.error(e); + } + try { + hubspotPageView(); + } catch (e) { + console.error(e); + } + } +}; + +const amplitudeIdentify = (userId, properties = {}) => { + amplitude.setUserId(userId); + const identifyEvent = new amplitude.Identify(); + for (const key in properties) { + if (Object.prototype.hasOwnProperty.call(properties, key)) { + identifyEvent.set(key, properties[key]); + } + } + amplitude.identify(identifyEvent); +}; + +const analyticsIdentify = (id, options = {}) => { + const user = currentUser(); + if (!user || (user && !user.is_admin)) { + const finalOptions = { + ...getCommonOptions(), + ...options + }; + try { + hubspotIdentify({ + properties: { ...finalOptions, refId: id, email: user.email, ...user } + }); + } catch (e) { + console.error(e); + } + try { + amplitudeIdentify(id, finalOptions); + } catch (e) { + console.error(e); + } + } +}; + +export const AppAnalytics = { + identify: analyticsIdentify, + track: analyticsTrack, + page: analyticsPage +}; diff --git a/package.json b/package.json index ba44669d1e..138a7e2af9 100644 --- a/package.json +++ b/package.json @@ -89,6 +89,7 @@ "dependencies": { "@100mslive/react-icons": "0.4.1-alpha.0", "@100mslive/react-ui": "0.4.1-alpha.0", + "@amplitude/analytics-browser": "^2.11.6", "@headlessui/react": "^1.4.0", "@radix-ui/react-select": "^1.2.0", "algoliasearch": "^4.14.3", diff --git a/pages/_app.tsx b/pages/_app.tsx index 8c401ec307..b7c743e1d7 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -4,6 +4,7 @@ import { DefaultSeo } from 'next-seo'; import dynamic from 'next/dynamic'; import NProgress from 'nprogress'; import FallbackLayout from '@/layouts/FallbackLayout'; +import * as amplitude from '@amplitude/analytics-browser'; import SEO from '../next-seo.config'; import { currentUser } from '../lib/currentUser'; import '@/styles/custom-ch.css'; @@ -11,11 +12,14 @@ import '@/styles/utils.css'; import '@/styles/nprogress.css'; import '@/styles/theme.css'; import 'inter-ui/inter.css'; +import { AppAnalytics } from '../lib/publishEvents'; declare global { interface Window { // eslint-disable-next-line @typescript-eslint/no-explicit-any analytics: any; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + _hsq: any; } } @@ -29,8 +33,13 @@ const Application = ({ Component, pageProps }) => { const userDetails = currentUser(); const [count, setCount] = useState(0); React.useEffect(() => { + amplitude.init(process.env.NEXT_PUBLIC_AMPLITUDE_API_KEY || '', { + autocapture: { + pageViews: true + } + }); if (!!userDetails && Object.keys(userDetails).length !== 0 && count === 0) { - window.analytics.identify(userDetails.customer_id); + AppAnalytics.identify(userDetails.customer_id, { ...userDetails }); setCount(count + 1); } }, [userDetails]); diff --git a/pages/_document.tsx b/pages/_document.tsx index e92467fa46..58cbb03526 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -39,24 +39,11 @@ class MyDocument extends Document { /> {/* To Avoid Flickering */} + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

jitter

+
+
open override val jitter: Double?
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html index dea5556923..ac877fd575 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html @@ -46,12 +46,12 @@
-
+

from

-
fun from(videoStat: MutableMap<String, Any>, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?): Track.LocalTrack.LocalVideo
+
fun from(videoStat: MutableMap<String, Any>, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?, localTracksJitter: MutableMap<Long, Double>): Track.LocalTrack.LocalVideo
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
open override val jitter: Double?
+
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/jitter.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/jitter.html new file mode 100644 index 0000000000..550caf16fe --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/jitter.html @@ -0,0 +1,63 @@ + + + + + jitter + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

jitter

+
+
open override val jitter: Double?
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/index.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/index.html index 6ecaa51e6a..61cf5ec671 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/index.html @@ -115,7 +115,22 @@

Properties

- + +
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
abstract val jitter: Double?
diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/jitter.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/jitter.html new file mode 100644 index 0000000000..b1408a95ac --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/-local-track/jitter.html @@ -0,0 +1,63 @@ + + + + + jitter + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

jitter

+
+
abstract val jitter: Double?
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/bytes-transported.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/bytes-transported.html index 3765d41c87..fc8a60b273 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/bytes-transported.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-track/bytes-transported.html @@ -51,7 +51,7 @@

bytesTransported

- +
- +
diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-video/bytes-transported.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-video/bytes-transported.html index f8459b6cd7..2811090ec3 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-video/bytes-transported.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/-video/bytes-transported.html @@ -51,7 +51,7 @@

bytesTransported

-
open override val bytesTransported: BigInteger?
+
open override val bytesTransported: BigInteger?
-
open override val bytesTransported: BigInteger?
+
open override val bytesTransported: BigInteger?
diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/index.html b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/index.html index 1c433716b7..0f4db16948 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.degredation/index.html @@ -95,7 +95,7 @@

Types

-
data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats
+
data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats
diff --git a/public/api-reference/android/v2/lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html b/public/api-reference/android/v2/lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html index a5957f9ba5..87376274ba 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html +++ b/public/api-reference/android/v2/lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html @@ -46,12 +46,12 @@
-
+

HMSLocalAudioStats

-
fun HMSLocalAudioStats(roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?)
+
fun HMSLocalAudioStats(jitter: Double?, roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?, packetsSent: Long?)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.error/index.html b/public/api-reference/android/v2/lib/live.hms.video.error/index.html index da26b8b50c..b6624c1fca 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.error/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.error/index.html @@ -80,7 +80,7 @@

Types

-
class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap<String, Any> = hashMapOf()) : Exception, IAnalyticsPropertiesProvider

This class contains the error codes and messages that may arise when calling any API of HMS SDK

+
class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap<String, Any> = hashMapOf()) : Exception, IAnalyticsPropertiesProvider

This class contains the error codes and messages that may arise when calling any API of HMS SDK

diff --git a/public/api-reference/android/v2/lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html b/public/api-reference/android/v2/lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html index 0ec8cd83cd..04d09304a3 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html +++ b/public/api-reference/android/v2/lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html @@ -51,7 +51,7 @@

getModelStream

- + diff --git a/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/index.html b/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/index.html index 4e2932e8c3..9b81863e35 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/index.html @@ -103,6 +103,21 @@

Functions

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun reset()
+
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/reset.html b/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/reset.html new file mode 100644 index 0000000000..6e77626ffd --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.factories/-safe-variable/reset.html @@ -0,0 +1,63 @@ + + + + + reset + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

reset

+
+
fun reset()
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html index dd6556bf35..e23af76439 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html @@ -50,7 +50,7 @@

ImageCaptureModel

-
data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable

The captured image and supporting information.

+
data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable

The captured image and supporting information.

diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html index 9fb60a1497..8b5135f169 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html @@ -51,7 +51,7 @@

YuvByteBuffer

-
fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)
+
fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)
@@ -83,7 +83,7 @@

Properties

diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/index.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/index.html index 85f0c91702..a3696b567c 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera.utils/index.html @@ -80,7 +80,7 @@

Types

-
data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable

The captured image and supporting information.

+
data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable

The captured image and supporting information.

@@ -110,7 +110,7 @@

Types

-
class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)
+
class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html index 23b8088484..7db401a5ad 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html @@ -51,7 +51,7 @@

captureImageAtMaxSupportedResolution

-
fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)

Captures the highest resolution image that the local camera supports. This does not depend on publisher's resolution.

Parameters

savePath

File path where the captured image is to be saved

callback

Boolean.true if image was successfully captured and saved in the file provided, Boolean.false otherwise.

+
fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)

Captures the highest resolution image that the local camera supports. This does not depend on publisher's resolution.

Parameters

savePath

File path where the captured image is to be saved

callback

Boolean.true if image was successfully captured and saved in the file provided, Boolean.false otherwise.

-
fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)

Captures the highest resolution image that the local camera supports. This does not depend on publisher's resolution.

+
fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)

Captures the highest resolution image that the local camera supports. This does not depend on publisher's resolution.

diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/dispose.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/dispose.html new file mode 100644 index 0000000000..da1f152680 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/dispose.html @@ -0,0 +1,63 @@ + + + + + dispose + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

dispose

+
+
open fun dispose()
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html b/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html index 1c1fcf030f..7241d31021 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html @@ -56,7 +56,22 @@

HMSCapturer

Functions

-
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
open fun dispose()
+
+
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/index.html b/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/index.html index 786c32e4ea..98751c4ea6 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/index.html @@ -98,7 +98,7 @@

Functions

-
open fun valueOf(name: String): PhoneCallState
Returns the enum constant of this type with the specified name.
+
open fun valueOf(name: String): PhoneCallState
Returns the enum constant of this type with the specified name.
diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/value-of.html b/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/value-of.html index 5b62aa36d8..bed0fac9e2 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/value-of.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.settings/-phone-call-state/value-of.html @@ -51,7 +51,7 @@

valueOf

-
open fun valueOf(name: String): PhoneCallState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Return

the enum constant with the specified name

Throws

if this enum type has no constant with the specified name

+
open fun valueOf(name: String): PhoneCallState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Return

the enum constant with the specified name

Throws

if this enum type has no constant with the specified name

diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html b/public/api-reference/android/v2/lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html index 7f7a09f561..ece4022a40 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html @@ -51,7 +51,7 @@

tracks

- +
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-is-dispose.html b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-is-dispose.html new file mode 100644 index 0000000000..660fc66cf2 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-is-dispose.html @@ -0,0 +1,63 @@ + + + + + setIsDispose + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

setIsDispose

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html index a119ddf70b..2bc752082f 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html @@ -191,6 +191,21 @@

Functions

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-is-dispose.html b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-is-dispose.html new file mode 100644 index 0000000000..650d2805b0 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-is-dispose.html @@ -0,0 +1,63 @@ + + + + + setIsDispose + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

setIsDispose

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html index c50dee13ef..5618630ff1 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html @@ -51,7 +51,7 @@

PublishParams

-
fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList<String> = arrayListOf(), simulcast: Simulcast?)
+
fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList<String> = arrayListOf(), simulcast: Simulcast?)
@@ -83,7 +83,7 @@

Properties

-
@SerializedName(value = "allowed")
val allowed: ArrayList<String>
+
@SerializedName(value = "allowed")
val allowed: ArrayList<String>
diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html index 418e8f1ad6..252cb7a363 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html @@ -51,7 +51,7 @@

SubscribeParams

-
fun SubscribeParams(subscribeTo: ArrayList<String>?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)
+
fun SubscribeParams(subscribeTo: ArrayList<String>?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)
@@ -113,7 +113,7 @@

Properties

-
@SerializedName(value = "subscribeToRoles")
val subscribeTo: ArrayList<String>?
+
@SerializedName(value = "subscribeToRoles")
val subscribeTo: ArrayList<String>?
diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html index 7b81733281..d2bede8969 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html @@ -51,7 +51,7 @@

subscribeTo

-
@SerializedName(value = "subscribeToRoles")
val subscribeTo: ArrayList<String>?
+
@SerializedName(value = "subscribeToRoles")
val subscribeTo: ArrayList<String>?
-
data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList<String> = arrayListOf(), val simulcast: Simulcast?)
+
data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList<String> = arrayListOf(), val simulcast: Simulcast?)
@@ -204,7 +204,7 @@

Types

-
data class SubscribeParams(val subscribeTo: ArrayList<String>?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)
+
data class SubscribeParams(val subscribeTo: ArrayList<String>?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/-last-track-state.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/-last-track-state.html new file mode 100644 index 0000000000..ad6a9f851d --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/-last-track-state.html @@ -0,0 +1,63 @@ + + + + + LastTrackState + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

LastTrackState

+
+
fun LastTrackState(isLocalVideoMuted: Boolean, isLocalAudioMuted: Boolean, isScreenSharePublished: Boolean, isCameraFacing: HMSVideoTrackSettings.CameraFacing)
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/index.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/index.html new file mode 100644 index 0000000000..1c6caf7a19 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/index.html @@ -0,0 +1,147 @@ + + + + + LastTrackState + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

LastTrackState

+
data class LastTrackState(val isLocalVideoMuted: Boolean, val isLocalAudioMuted: Boolean, val isScreenSharePublished: Boolean, val isCameraFacing: HMSVideoTrackSettings.CameraFacing)
+
+
+
+
+

Constructors

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun LastTrackState(isLocalVideoMuted: Boolean, isLocalAudioMuted: Boolean, isScreenSharePublished: Boolean, isCameraFacing: HMSVideoTrackSettings.CameraFacing)
+
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+ +
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+
+
+
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-camera-facing.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-camera-facing.html new file mode 100644 index 0000000000..3541663fec --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-camera-facing.html @@ -0,0 +1,63 @@ + + + + + isCameraFacing + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

isCameraFacing

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-audio-muted.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-audio-muted.html new file mode 100644 index 0000000000..2466022ba1 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-audio-muted.html @@ -0,0 +1,63 @@ + + + + + isLocalAudioMuted + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

isLocalAudioMuted

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-video-muted.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-video-muted.html new file mode 100644 index 0000000000..65da96dca9 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-local-video-muted.html @@ -0,0 +1,63 @@ + + + + + isLocalVideoMuted + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

isLocalVideoMuted

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-screen-share-published.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-screen-share-published.html new file mode 100644 index 0000000000..e93b48dc6f --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/-last-track-state/is-screen-share-published.html @@ -0,0 +1,63 @@ + + + + + isScreenSharePublished + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

isScreenSharePublished

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/index.html b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/index.html index 20bda1c2fd..dcef0974f2 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk.models/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk.models/index.html @@ -445,6 +445,21 @@

Types

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class LastTrackState(val isLocalVideoMuted: Boolean, val isLocalAudioMuted: Boolean, val isScreenSharePublished: Boolean, val isCameraFacing: HMSVideoTrackSettings.CameraFacing)
+
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html b/public/api-reference/android/v2/lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html index 3b930f6feb..7b896ed55e 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html @@ -50,7 +50,7 @@

OfflineAnalyticsPeerInfo

- +
diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html b/public/api-reference/android/v2/lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html index 0ffb3b9c3b..f88adbbf47 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html @@ -51,7 +51,7 @@

getSpeedTestScore

-
fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap<Int, RangeLimits>): Int

Converts the given kilobytes per second into a score from 0-5 Where -1 is Error During Test and 1 is bad internet, 5 is best.

+
fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap<Int, RangeLimits>): Int

Converts the given kilobytes per second into a score from 0-5 Where -1 is Error During Test and 1 is bad internet, 5 is best.

-
fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap<Int, RangeLimits>): Int

Converts the given kilobytes per second into a score from 0-5 Where -1 is Error During Test and 1 is bad internet, 5 is best.

+
fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap<Int, RangeLimits>): Int

Converts the given kilobytes per second into a score from 0-5 Where -1 is Error During Test and 1 is bad internet, 5 is best.

diff --git a/public/api-reference/android/v2/lib/live.hms.video.sdk/index.html b/public/api-reference/android/v2/lib/live.hms.video.sdk/index.html index 65db768b89..2bf927fcf4 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.sdk/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.sdk/index.html @@ -245,7 +245,7 @@

Types

diff --git a/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html b/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html index b35dc135f4..dd90f1a807 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html @@ -98,7 +98,7 @@

Functions

-
open override fun dump(p0: FileDescriptor, p1: Array<String>?)
+
open override fun dump(p0: FileDescriptor, p1: Array<String>?)
@@ -113,7 +113,7 @@

Functions

-
open override fun dumpAsync(p0: FileDescriptor, p1: Array<String>?)
+
open override fun dumpAsync(p0: FileDescriptor, p1: Array<String>?)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html b/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html index cb66301045..b231100166 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html @@ -115,7 +115,7 @@

Functions

-
open override fun bindIsolatedService(p0: Intent, p1: Int, p2: String, p3: Executor, p4: ServiceConnection): Boolean
+
open override fun bindIsolatedService(p0: Intent, p1: Int, p2: String, p3: Executor, p4: ServiceConnection): Boolean
@@ -130,7 +130,7 @@

Functions

-
open override fun bindService(p0: Intent, p1: ServiceConnection, p2: Int): Boolean
open override fun bindService(p0: Intent, p1: Int, p2: Executor, p3: ServiceConnection): Boolean
+
open override fun bindService(p0: Intent, p1: ServiceConnection, p2: Int): Boolean
open override fun bindService(p0: Intent, p1: Int, p2: Executor, p3: ServiceConnection): Boolean
@@ -715,7 +715,7 @@

Functions

-
open override fun getCacheDir(): File
+
open override fun getCacheDir(): File
@@ -730,7 +730,7 @@

Functions

-
open override fun getClassLoader(): ClassLoader
+
open override fun getClassLoader(): ClassLoader
@@ -745,7 +745,7 @@

Functions

-
open override fun getCodeCacheDir(): File
+
open override fun getCodeCacheDir(): File
@@ -805,7 +805,7 @@

Functions

-
open override fun getDatabasePath(p0: String): File
+
open override fun getDatabasePath(p0: String): File
@@ -820,7 +820,7 @@

Functions

-
open override fun getDataDir(): File
+
open override fun getDataDir(): File
@@ -835,7 +835,7 @@

Functions

-
open override fun getDir(p0: String, p1: Int): File
+
open override fun getDir(p0: String, p1: Int): File
@@ -880,7 +880,7 @@

Functions

-
open override fun getExternalCacheDir(): File?
+
open override fun getExternalCacheDir(): File?
@@ -895,7 +895,7 @@

Functions

-
open override fun getExternalCacheDirs(): Array<File>
+
open override fun getExternalCacheDirs(): Array<File>
@@ -910,7 +910,7 @@

Functions

-
open override fun getExternalFilesDir(p0: String?): File?
+
open override fun getExternalFilesDir(p0: String?): File?
@@ -925,7 +925,7 @@

Functions

-
open override fun getExternalFilesDirs(p0: String): Array<File>
+
open override fun getExternalFilesDirs(p0: String): Array<File>
@@ -940,7 +940,7 @@

Functions

-
open override fun getExternalMediaDirs(): Array<File>
+
open override fun getExternalMediaDirs(): Array<File>
@@ -955,7 +955,7 @@

Functions

-
open override fun getFilesDir(): File
+
open override fun getFilesDir(): File
@@ -970,7 +970,7 @@

Functions

-
open override fun getFileStreamPath(p0: String): File
+
open override fun getFileStreamPath(p0: String): File
@@ -1000,7 +1000,7 @@

Functions

-
open override fun getMainExecutor(): Executor
+
open override fun getMainExecutor(): Executor
@@ -1030,7 +1030,7 @@

Functions

-
open override fun getNoBackupFilesDir(): File
+
open override fun getNoBackupFilesDir(): File
@@ -1045,7 +1045,7 @@

Functions

-
open override fun getObbDir(): File
+
open override fun getObbDir(): File
@@ -1060,7 +1060,7 @@

Functions

-
open override fun getObbDirs(): Array<File>
+
open override fun getObbDirs(): Array<File>
@@ -1210,7 +1210,7 @@

Functions

-
fun <T : Any> getSystemService(p0: Class<T>): T
open override fun getSystemService(p0: String): Any
+
fun <T : Any> getSystemService(p0: Class<T>): T
open override fun getSystemService(p0: String): Any
@@ -1225,7 +1225,7 @@

Functions

-
open override fun getSystemServiceName(p0: Class<*>): String?
+
open override fun getSystemServiceName(p0: Class<*>): String?
@@ -1585,7 +1585,7 @@

Functions

-
open override fun openFileInput(p0: String): FileInputStream
+
open override fun openFileInput(p0: String): FileInputStream
@@ -1600,7 +1600,7 @@

Functions

-
open override fun openFileOutput(p0: String, p1: Int): FileOutputStream
+
open override fun openFileOutput(p0: String, p1: Int): FileOutputStream
@@ -1900,7 +1900,7 @@

Functions

-
open override fun setWallpaper(p0: Bitmap)
open override fun setWallpaper(p0: InputStream)
+
open override fun setWallpaper(p0: Bitmap)
open override fun setWallpaper(p0: InputStream)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/-network-health.html b/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/-network-health.html index 49f8b684be..1044f1371f 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/-network-health.html +++ b/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/-network-health.html @@ -51,7 +51,7 @@

NetworkHealth

-
fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap<Int, RangeLimits>)
+
fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap<Int, RangeLimits>)
@@ -83,7 +83,7 @@

Properties

-
@SerializedName(value = "scoreMap")
val scoreMap: SortedMap<Int, RangeLimits>
+
@SerializedName(value = "scoreMap")
val scoreMap: SortedMap<Int, RangeLimits>
diff --git a/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/score-map.html b/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/score-map.html index 2dd7928fa5..e6e8b72db9 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/score-map.html +++ b/public/api-reference/android/v2/lib/live.hms.video.signal.init/-network-health/score-map.html @@ -51,7 +51,7 @@

scoreMap

-
@SerializedName(value = "scoreMap")
val scoreMap: SortedMap<Int, RangeLimits>
+
@SerializedName(value = "scoreMap")
val scoreMap: SortedMap<Int, RangeLimits>
-
data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap<Int, RangeLimits>)
+
data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap<Int, RangeLimits>)
diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/dispatcher.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/dispatcher.html new file mode 100644 index 0000000000..c4877be77e --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/dispatcher.html @@ -0,0 +1,63 @@ + + + + + dispatcher + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

dispatcher

+
+
val dispatcher: ExecutorCoroutineDispatcher
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/executor.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/executor.html new file mode 100644 index 0000000000..a10f184080 --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/executor.html @@ -0,0 +1,63 @@ + + + + + executor + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

executor

+
+ +
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html index 05ad7b745c..76869016f2 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html @@ -53,10 +53,25 @@

HMSCoroutineScope<
object HMSCoroutineScope : CoroutineScope
-
+

Functions

-
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun HMSCoroutineScope.launchWithTimeout(block: suspend CoroutineScope.() -> Unit): Job
+
+
+
+
+
@@ -66,7 +81,7 @@

Functions

-
fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
+
fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
@@ -81,7 +96,7 @@

Functions

-
fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
+
fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
@@ -103,6 +118,53 @@

Properties

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val dispatcher: ExecutorCoroutineDispatcher
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+ +
+
+ +

Extensions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun HMSCoroutineScope.launchWithTimeout(block: suspend CoroutineScope.() -> Unit): Job
+
+
+
+
diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/launch-with-timeout.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/launch-with-timeout.html new file mode 100644 index 0000000000..057df779ba --- /dev/null +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/launch-with-timeout.html @@ -0,0 +1,63 @@ + + + + + launchWithTimeout + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

launchWithTimeout

+
+
fun HMSCoroutineScope.launchWithTimeout(block: suspend CoroutineScope.() -> Unit): Job
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html index dcc22886d9..64847b964f 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html @@ -51,7 +51,7 @@

scheduleWithFixedDelay

-
fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
+
fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>
-
fun getDirPath(context: Context): File
+
fun getDirPath(context: Context): File
@@ -111,7 +111,7 @@

Functions

-
fun saveLogsToFile(context: Context, filename: String): File
+
fun saveLogsToFile(context: Context, filename: String): File
@@ -143,7 +143,7 @@

Properties

- +
@@ -158,7 +158,7 @@

Properties

diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-log-utils/save-logs-to-file.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-log-utils/save-logs-to-file.html index 53528f7f83..1b24f307ca 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.utils/-log-utils/save-logs-to-file.html +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-log-utils/save-logs-to-file.html @@ -51,7 +51,7 @@

saveLogsToFile

-
fun saveLogsToFile(context: Context, filename: String): File
+
fun saveLogsToFile(context: Context, filename: String): File
-
fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean
+
fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean
@@ -128,7 +128,7 @@

Properties

diff --git a/public/api-reference/android/v2/lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html b/public/api-reference/android/v2/lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html index f2a2987bcf..7b99983eb4 100644 --- a/public/api-reference/android/v2/lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html +++ b/public/api-reference/android/v2/lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html @@ -51,7 +51,7 @@

isEffectTypeAvailable

-
fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean
+
fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean
@@ -459,7 +459,7 @@

Properties

@@ -519,7 +519,7 @@

Properties

diff --git a/public/api-reference/android/v2/lib/navigation.html b/public/api-reference/android/v2/lib/navigation.html index 523fe0af2b..1d75a8957f 100644 --- a/public/api-reference/android/v2/lib/navigation.html +++ b/public/api-reference/android/v2/lib/navigation.html @@ -2112,107 +2112,112 @@ HMSSpeaker -
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/api-reference/android/v2/navigation.html b/public/api-reference/android/v2/navigation.html index fb9d1cad30..ad8cdfb766 100644 --- a/public/api-reference/android/v2/navigation.html +++ b/public/api-reference/android/v2/navigation.html @@ -2112,107 +2112,112 @@ HMSSpeaker
-
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/api-reference/android/v2/scripts/pages.json b/public/api-reference/android/v2/scripts/pages.json index 63e48e7c81..e0e76f9316 100644 --- a/public/api-reference/android/v2/scripts/pages.json +++ b/public/api-reference/android/v2/scripts/pages.json @@ -1 +1 @@ -[{"name":"class NativeLib","description":"live.hms.hms_noise_cancellation_android.NativeLib","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/index.html","searchKeys":["NativeLib","class NativeLib","live.hms.hms_noise_cancellation_android.NativeLib"]},{"name":"external fun stringFromJNI(): String","description":"live.hms.hms_noise_cancellation_android.NativeLib.stringFromJNI","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/string-from-j-n-i.html","searchKeys":["stringFromJNI","external fun stringFromJNI(): String","live.hms.hms_noise_cancellation_android.NativeLib.stringFromJNI"]},{"name":"fun NativeLib()","description":"live.hms.hms_noise_cancellation_android.NativeLib.NativeLib","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/-native-lib.html","searchKeys":["NativeLib","fun NativeLib()","live.hms.hms_noise_cancellation_android.NativeLib.NativeLib"]},{"name":"object Companion","description":"live.hms.hms_noise_cancellation_android.NativeLib.Companion","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.hms_noise_cancellation_android.NativeLib.Companion"]},{"name":"abstract fun onResolutionChange(width: Int, height: Int)","description":"live.hms.videoview.ResolutionChangeListener.onResolutionChange","location":"videoview/live.hms.videoview/-resolution-change-listener/on-resolution-change.html","searchKeys":["onResolutionChange","abstract fun onResolutionChange(width: Int, height: Int)","live.hms.videoview.ResolutionChangeListener.onResolutionChange"]},{"name":"class HMSTextureRenderer(surfaceTexture: SurfaceTexture)","description":"live.hms.videoview.textureview.HMSTextureRenderer","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/index.html","searchKeys":["HMSTextureRenderer","class HMSTextureRenderer(surfaceTexture: SurfaceTexture)","live.hms.videoview.textureview.HMSTextureRenderer"]},{"name":"class HMSVideoView : SurfaceViewRenderer","description":"live.hms.videoview.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/index.html","searchKeys":["HMSVideoView","class HMSVideoView : SurfaceViewRenderer","live.hms.videoview.HMSVideoView"]},{"name":"fun HMSTextureRenderer(surfaceTexture: SurfaceTexture)","description":"live.hms.videoview.textureview.HMSTextureRenderer.HMSTextureRenderer","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/-h-m-s-texture-renderer.html","searchKeys":["HMSTextureRenderer","fun HMSTextureRenderer(surfaceTexture: SurfaceTexture)","live.hms.videoview.textureview.HMSTextureRenderer.HMSTextureRenderer"]},{"name":"fun HMSVideoView(context: Context)","description":"live.hms.videoview.HMSVideoView.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/-h-m-s-video-view.html","searchKeys":["HMSVideoView","fun HMSVideoView(context: Context)","live.hms.videoview.HMSVideoView.HMSVideoView"]},{"name":"fun HMSVideoView(context: Context, attributeSet: AttributeSet)","description":"live.hms.videoview.HMSVideoView.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/-h-m-s-video-view.html","searchKeys":["HMSVideoView","fun HMSVideoView(context: Context, attributeSet: AttributeSet)","live.hms.videoview.HMSVideoView.HMSVideoView"]},{"name":"fun addTrack(track: HMSVideoTrack)","description":"live.hms.videoview.HMSVideoView.addTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack)","live.hms.videoview.HMSVideoView.addTrack"]},{"name":"fun addTrack(track: HMSVideoTrack)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack)","live.hms.videoview.textureview.HMSTextureRenderer.addTrack"]},{"name":"fun addTrack(track: HMSVideoTrack, enableBlackFrame: Boolean = false)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack, enableBlackFrame: Boolean = false)","live.hms.videoview.textureview.HMSTextureRenderer.addTrack"]},{"name":"fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","description":"live.hms.videoview.HMSVideoView.addVideoViewStateChangeListener","location":"videoview/live.hms.videoview/-h-m-s-video-view/add-video-view-state-change-listener.html","searchKeys":["addVideoViewStateChangeListener","fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","live.hms.videoview.HMSVideoView.addVideoViewStateChangeListener"]},{"name":"fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addVideoViewStateChangeListener","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-video-view-state-change-listener.html","searchKeys":["addVideoViewStateChangeListener","fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","live.hms.videoview.textureview.HMSTextureRenderer.addVideoViewStateChangeListener"]},{"name":"fun captureBitmap(onBitmap: (Bitmap?) -> Unit, scale: Float = 1.0f)","description":"live.hms.videoview.HMSVideoView.captureBitmap","location":"videoview/live.hms.videoview/-h-m-s-video-view/capture-bitmap.html","searchKeys":["captureBitmap","fun captureBitmap(onBitmap: (Bitmap?) -> Unit, scale: Float = 1.0f)","live.hms.videoview.HMSVideoView.captureBitmap"]},{"name":"fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","description":"live.hms.videoview.HMSVideoView.disableAutoSimulcastLayerSelect","location":"videoview/live.hms.videoview/-h-m-s-video-view/disable-auto-simulcast-layer-select.html","searchKeys":["disableAutoSimulcastLayerSelect","fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","live.hms.videoview.HMSVideoView.disableAutoSimulcastLayerSelect"]},{"name":"fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","description":"live.hms.videoview.textureview.HMSTextureRenderer.disableAutoSimulcastLayerSelect","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/disable-auto-simulcast-layer-select.html","searchKeys":["disableAutoSimulcastLayerSelect","fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","live.hms.videoview.textureview.HMSTextureRenderer.disableAutoSimulcastLayerSelect"]},{"name":"fun displayResolution(width: Int, height: Int)","description":"live.hms.videoview.textureview.HMSTextureRenderer.displayResolution","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/display-resolution.html","searchKeys":["displayResolution","fun displayResolution(width: Int, height: Int)","live.hms.videoview.textureview.HMSTextureRenderer.displayResolution"]},{"name":"fun enableZoomAndPan(isEnabled: Boolean)","description":"live.hms.videoview.HMSVideoView.enableZoomAndPan","location":"videoview/live.hms.videoview/-h-m-s-video-view/enable-zoom-and-pan.html","searchKeys":["enableZoomAndPan","fun enableZoomAndPan(isEnabled: Boolean)","live.hms.videoview.HMSVideoView.enableZoomAndPan"]},{"name":"fun getTrack(): HMSVideoTrack?","description":"live.hms.videoview.HMSVideoView.getTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/get-track.html","searchKeys":["getTrack","fun getTrack(): HMSVideoTrack?","live.hms.videoview.HMSVideoView.getTrack"]},{"name":"fun getTrack(): HMSVideoTrack?","description":"live.hms.videoview.textureview.HMSTextureRenderer.getTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/get-track.html","searchKeys":["getTrack","fun getTrack(): HMSVideoTrack?","live.hms.videoview.textureview.HMSTextureRenderer.getTrack"]},{"name":"fun removeTrack()","description":"live.hms.videoview.HMSVideoView.removeTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/remove-track.html","searchKeys":["removeTrack","fun removeTrack()","live.hms.videoview.HMSVideoView.removeTrack"]},{"name":"fun removeTrack()","description":"live.hms.videoview.textureview.HMSTextureRenderer.removeTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/remove-track.html","searchKeys":["removeTrack","fun removeTrack()","live.hms.videoview.textureview.HMSTextureRenderer.removeTrack"]},{"name":"interface ResolutionChangeListener","description":"live.hms.videoview.ResolutionChangeListener","location":"videoview/live.hms.videoview/-resolution-change-listener/index.html","searchKeys":["ResolutionChangeListener","interface ResolutionChangeListener","live.hms.videoview.ResolutionChangeListener"]},{"name":"interface VideoViewStateChangeListener","description":"live.hms.videoview.VideoViewStateChangeListener","location":"videoview/live.hms.videoview/-video-view-state-change-listener/index.html","searchKeys":["VideoViewStateChangeListener","interface VideoViewStateChangeListener","live.hms.videoview.VideoViewStateChangeListener"]},{"name":"open fun onFirstFrameRendered()","description":"live.hms.videoview.VideoViewStateChangeListener.onFirstFrameRendered","location":"videoview/live.hms.videoview/-video-view-state-change-listener/on-first-frame-rendered.html","searchKeys":["onFirstFrameRendered","open fun onFirstFrameRendered()","live.hms.videoview.VideoViewStateChangeListener.onFirstFrameRendered"]},{"name":"open fun onResolutionChange(newWidth: Int, newHeight: Int)","description":"live.hms.videoview.VideoViewStateChangeListener.onResolutionChange","location":"videoview/live.hms.videoview/-video-view-state-change-listener/on-resolution-change.html","searchKeys":["onResolutionChange","open fun onResolutionChange(newWidth: Int, newHeight: Int)","live.hms.videoview.VideoViewStateChangeListener.onResolutionChange"]},{"name":"open override fun onTouchEvent(event: MotionEvent): Boolean","description":"live.hms.videoview.HMSVideoView.onTouchEvent","location":"videoview/live.hms.videoview/-h-m-s-video-view/on-touch-event.html","searchKeys":["onTouchEvent","open override fun onTouchEvent(event: MotionEvent): Boolean","live.hms.videoview.HMSVideoView.onTouchEvent"]},{"name":"open override fun setScalingType(scalingType: RendererCommon.ScalingType)","description":"live.hms.videoview.HMSVideoView.setScalingType","location":"videoview/live.hms.videoview/-h-m-s-video-view/set-scaling-type.html","searchKeys":["setScalingType","open override fun setScalingType(scalingType: RendererCommon.ScalingType)","live.hms.videoview.HMSVideoView.setScalingType"]},{"name":"val TAG: String","description":"live.hms.videoview.textureview.HMSTextureRenderer.TAG","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.videoview.textureview.HMSTextureRenderer.TAG"]},{"name":"ANALYZE","description":"live.hms.video.plugin.video.HMSVideoPluginType.ANALYZE","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/-a-n-a-l-y-z-e/index.html","searchKeys":["ANALYZE","ANALYZE","live.hms.video.plugin.video.HMSVideoPluginType.ANALYZE"]},{"name":"ANDROID_NATIVE","description":"live.hms.video.events.AgentType.ANDROID_NATIVE","location":"lib/live.hms.video.events/-agent-type/-a-n-d-r-o-i-d_-n-a-t-i-v-e/index.html","searchKeys":["ANDROID_NATIVE","ANDROID_NATIVE","live.hms.video.events.AgentType.ANDROID_NATIVE"]},{"name":"AUDIO","description":"live.hms.video.media.tracks.HMSTrackType.AUDIO","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-a-u-d-i-o/index.html","searchKeys":["AUDIO","AUDIO","live.hms.video.media.tracks.HMSTrackType.AUDIO"]},{"name":"AUDIOFOCUS_GAIN","description":"live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_GAIN","location":"lib/live.hms.video.audio/-audio-change-event/-a-u-d-i-o-f-o-c-u-s_-g-a-i-n/index.html","searchKeys":["AUDIOFOCUS_GAIN","AUDIOFOCUS_GAIN","live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_GAIN"]},{"name":"AUDIOFOCUS_LOSS_TRANSIENT","description":"live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_LOSS_TRANSIENT","location":"lib/live.hms.video.audio/-audio-change-event/-a-u-d-i-o-f-o-c-u-s_-l-o-s-s_-t-r-a-n-s-i-e-n-t/index.html","searchKeys":["AUDIOFOCUS_LOSS_TRANSIENT","AUDIOFOCUS_LOSS_TRANSIENT","live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_LOSS_TRANSIENT"]},{"name":"AUTO","description":"live.hms.video.sdk.models.enums.HMSMode.AUTO","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-a-u-t-o/index.html","searchKeys":["AUTO","AUTO","live.hms.video.sdk.models.enums.HMSMode.AUTO"]},{"name":"AUTOMATIC","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.AUTOMATIC","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-a-u-t-o-m-a-t-i-c/index.html","searchKeys":["AUTOMATIC","AUTOMATIC","live.hms.video.audio.HMSAudioManager.AudioDevice.AUTOMATIC"]},{"name":"BACK","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.BACK","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/-b-a-c-k/index.html","searchKeys":["BACK","BACK","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.BACK"]},{"name":"BALANCED","description":"live.hms.video.sdk.models.DegradationPreference.BALANCED","location":"lib/live.hms.video.sdk.models/-degradation-preference/-b-a-l-a-n-c-e-d/index.html","searchKeys":["BALANCED","BALANCED","live.hms.video.sdk.models.DegradationPreference.BALANCED"]},{"name":"BANDWIDTH","description":"live.hms.video.connection.degredation.QualityLimitationReason.BANDWIDTH","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-b-a-n-d-w-i-d-t-h/index.html","searchKeys":["BANDWIDTH","BANDWIDTH","live.hms.video.connection.degredation.QualityLimitationReason.BANDWIDTH"]},{"name":"BECAME_DOMINANT_SPEAKER","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.BECAME_DOMINANT_SPEAKER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-b-e-c-a-m-e_-d-o-m-i-n-a-n-t_-s-p-e-a-k-e-r/index.html","searchKeys":["BECAME_DOMINANT_SPEAKER","BECAME_DOMINANT_SPEAKER","live.hms.video.sdk.models.enums.HMSPeerUpdate.BECAME_DOMINANT_SPEAKER"]},{"name":"BLUETOOTH","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.BLUETOOTH","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-b-l-u-e-t-o-o-t-h/index.html","searchKeys":["BLUETOOTH","BLUETOOTH","live.hms.video.audio.HMSAudioManager.AudioDevice.BLUETOOTH"]},{"name":"BLUETOOTH","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.BLUETOOTH","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-b-l-u-e-t-o-o-t-h/index.html","searchKeys":["BLUETOOTH","BLUETOOTH","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.BLUETOOTH"]},{"name":"BLUR_BACKGROUND","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.BLUR_BACKGROUND","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-b-l-u-r_-b-a-c-k-g-r-o-u-n-d/index.html","searchKeys":["BLUR_BACKGROUND","BLUR_BACKGROUND","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.BLUR_BACKGROUND"]},{"name":"BROADCAST","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.BROADCAST","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-b-r-o-a-d-c-a-s-t/index.html","searchKeys":["BROADCAST","BROADCAST","live.hms.video.sdk.models.enums.HMSMessageRecipientType.BROADCAST"]},{"name":"BROWSER_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.BROWSER_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-b-r-o-w-s-e-r_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["BROWSER_RECORDING_STATE_UPDATED","BROWSER_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.BROWSER_RECORDING_STATE_UPDATED"]},{"name":"CAPTION","description":"live.hms.video.sdk.models.TranscriptionsMode.CAPTION","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/-c-a-p-t-i-o-n/index.html","searchKeys":["CAPTION","CAPTION","live.hms.video.sdk.models.TranscriptionsMode.CAPTION"]},{"name":"COMPLETED","description":"live.hms.video.diagnostics.models.ConnectivityState.COMPLETED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-c-o-m-p-l-e-t-e-d/index.html","searchKeys":["COMPLETED","COMPLETED","live.hms.video.diagnostics.models.ConnectivityState.COMPLETED"]},{"name":"CPU","description":"live.hms.video.connection.degredation.QualityLimitationReason.CPU","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-c-p-u/index.html","searchKeys":["CPU","CPU","live.hms.video.connection.degredation.QualityLimitationReason.CPU"]},{"name":"CREATED","description":"live.hms.video.polls.models.HmsPollState.CREATED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-c-r-e-a-t-e-d/index.html","searchKeys":["CREATED","CREATED","live.hms.video.polls.models.HmsPollState.CREATED"]},{"name":"DEBUG","description":"live.hms.video.utils.HMSLogger.LogLevel.DEBUG","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG","live.hms.video.utils.HMSLogger.LogLevel.DEBUG"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-e-x-c-l-u-s-i-v-e/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-t-r-a-n-s-i-e-n-t/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-t-r-a-n-s-i-e-n-t_-m-a-y_-d-u-c-k/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK"]},{"name":"DEBUG_AUDIOFOCUS_LOSS","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-l-o-s-s/index.html","searchKeys":["DEBUG_AUDIOFOCUS_LOSS","DEBUG_AUDIOFOCUS_LOSS","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS"]},{"name":"DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-l-o-s-s_-t-r-a-n-s-i-e-n-t_-c-a-n_-d-u-c-k/index.html","searchKeys":["DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK"]},{"name":"DEBUG_INVALID","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_INVALID","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-i-n-v-a-l-i-d/index.html","searchKeys":["DEBUG_INVALID","DEBUG_INVALID","live.hms.video.audio.AudioChangeEvent.DEBUG_INVALID"]},{"name":"DEFAULT","description":"live.hms.video.sdk.models.DegradationPreference.DEFAULT","location":"lib/live.hms.video.sdk.models/-degradation-preference/-d-e-f-a-u-l-t/index.html","searchKeys":["DEFAULT","DEFAULT","live.hms.video.sdk.models.DegradationPreference.DEFAULT"]},{"name":"DISABLED","description":"live.hms.video.sdk.models.DegradationPreference.DISABLED","location":"lib/live.hms.video.sdk.models/-degradation-preference/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED","live.hms.video.sdk.models.DegradationPreference.DISABLED"]},{"name":"DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","description":"live.hms.video.media.settings.PhoneCallState.DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","location":"lib/live.hms.video.media.settings/-phone-call-state/-d-i-s-a-b-l-e_-m-u-t-e_-o-n_-v-o-i-p_-p-h-o-n-e_-c-a-l-l_-r-i-n-g/index.html","searchKeys":["DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","live.hms.video.media.settings.PhoneCallState.DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING"]},{"name":"EARPIECE","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.EARPIECE","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-e-a-r-p-i-e-c-e/index.html","searchKeys":["EARPIECE","EARPIECE","live.hms.video.audio.HMSAudioManager.AudioDevice.EARPIECE"]},{"name":"EARPIECE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.EARPIECE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-e-a-r-p-i-e-c-e/index.html","searchKeys":["EARPIECE","EARPIECE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.EARPIECE"]},{"name":"ENABLE_MUTE_ON_PHONE_CALL_RING","description":"live.hms.video.media.settings.PhoneCallState.ENABLE_MUTE_ON_PHONE_CALL_RING","location":"lib/live.hms.video.media.settings/-phone-call-state/-e-n-a-b-l-e_-m-u-t-e_-o-n_-p-h-o-n-e_-c-a-l-l_-r-i-n-g/index.html","searchKeys":["ENABLE_MUTE_ON_PHONE_CALL_RING","ENABLE_MUTE_ON_PHONE_CALL_RING","live.hms.video.media.settings.PhoneCallState.ENABLE_MUTE_ON_PHONE_CALL_RING"]},{"name":"ERROR","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.ERROR","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.ERROR"]},{"name":"ERROR","description":"live.hms.video.utils.HMSLogger.LogLevel.ERROR","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR","live.hms.video.utils.HMSLogger.LogLevel.ERROR"]},{"name":"FAILED","description":"live.hms.video.sdk.models.TranscriptionState.FAILED","location":"lib/live.hms.video.sdk.models/-transcription-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.TranscriptionState.FAILED"]},{"name":"FAILED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.FAILED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.enums.HMSRecordingState.FAILED"]},{"name":"FAILED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.FAILED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.enums.HMSStreamingState.FAILED"]},{"name":"FLUTTER","description":"live.hms.video.events.AgentType.FLUTTER","location":"lib/live.hms.video.events/-agent-type/-f-l-u-t-t-e-r/index.html","searchKeys":["FLUTTER","FLUTTER","live.hms.video.events.AgentType.FLUTTER"]},{"name":"FRONT","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.FRONT","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/-f-r-o-n-t/index.html","searchKeys":["FRONT","FRONT","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.FRONT"]},{"name":"H264","description":"live.hms.video.media.codec.HMSVideoCodec.H264","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-h264/index.html","searchKeys":["H264","H264","live.hms.video.media.codec.HMSVideoCodec.H264"]},{"name":"HAND_RAISED_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.HAND_RAISED_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-h-a-n-d_-r-a-i-s-e-d_-c-h-a-n-g-e-d/index.html","searchKeys":["HAND_RAISED_CHANGED","HAND_RAISED_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.HAND_RAISED_CHANGED"]},{"name":"HIGH","description":"live.hms.video.media.settings.HMSLayer.HIGH","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-h-i-g-h/index.html","searchKeys":["HIGH","HIGH","live.hms.video.media.settings.HMSLayer.HIGH"]},{"name":"HLS_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-h-l-s_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["HLS_RECORDING_STATE_UPDATED","HLS_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_RECORDING_STATE_UPDATED"]},{"name":"HLS_STREAMING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_STREAMING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-h-l-s_-s-t-r-e-a-m-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["HLS_STREAMING_STATE_UPDATED","HLS_STREAMING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_STREAMING_STATE_UPDATED"]},{"name":"HMSAUDIOMODEMUSIC","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEMUSIC","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/-h-m-s-a-u-d-i-o-m-o-d-e-m-u-s-i-c/index.html","searchKeys":["HMSAUDIOMODEMUSIC","HMSAUDIOMODEMUSIC","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEMUSIC"]},{"name":"HMSAUDIOMODEVOICE","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEVOICE","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/-h-m-s-a-u-d-i-o-m-o-d-e-v-o-i-c-e/index.html","searchKeys":["HMSAUDIOMODEVOICE","HMSAUDIOMODEVOICE","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEVOICE"]},{"name":"ICE_ESTABLISHED","description":"live.hms.video.diagnostics.models.ConnectivityState.ICE_ESTABLISHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-i-c-e_-e-s-t-a-b-l-i-s-h-e-d/index.html","searchKeys":["ICE_ESTABLISHED","ICE_ESTABLISHED","live.hms.video.diagnostics.models.ConnectivityState.ICE_ESTABLISHED"]},{"name":"INFO","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.INFO","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.INFO"]},{"name":"INFO","description":"live.hms.video.utils.HMSLogger.LogLevel.INFO","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO","live.hms.video.utils.HMSLogger.LogLevel.INFO"]},{"name":"INITIALIZED","description":"live.hms.video.sdk.models.TranscriptionState.INITIALIZED","location":"lib/live.hms.video.sdk.models/-transcription-state/-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["INITIALIZED","INITIALIZED","live.hms.video.sdk.models.TranscriptionState.INITIALIZED"]},{"name":"INIT_FETCHED","description":"live.hms.video.diagnostics.models.ConnectivityState.INIT_FETCHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-i-n-i-t_-f-e-t-c-h-e-d/index.html","searchKeys":["INIT_FETCHED","INIT_FETCHED","live.hms.video.diagnostics.models.ConnectivityState.INIT_FETCHED"]},{"name":"JOINED","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.JOINED","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/-j-o-i-n-e-d/index.html","searchKeys":["JOINED","JOINED","live.hms.video.sdk.models.enums.RetrySchedulerState.JOINED"]},{"name":"LIVE","description":"live.hms.video.sdk.models.TranscriptionsMode.LIVE","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/-l-i-v-e/index.html","searchKeys":["LIVE","LIVE","live.hms.video.sdk.models.TranscriptionsMode.LIVE"]},{"name":"LOW","description":"live.hms.video.media.settings.HMSLayer.LOW","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-l-o-w/index.html","searchKeys":["LOW","LOW","live.hms.video.media.settings.HMSLayer.LOW"]},{"name":"MAINTAIN_FRAMERATE","description":"live.hms.video.sdk.models.DegradationPreference.MAINTAIN_FRAMERATE","location":"lib/live.hms.video.sdk.models/-degradation-preference/-m-a-i-n-t-a-i-n_-f-r-a-m-e-r-a-t-e/index.html","searchKeys":["MAINTAIN_FRAMERATE","MAINTAIN_FRAMERATE","live.hms.video.sdk.models.DegradationPreference.MAINTAIN_FRAMERATE"]},{"name":"MAINTAIN_RESOLUTION","description":"live.hms.video.sdk.models.DegradationPreference.MAINTAIN_RESOLUTION","location":"lib/live.hms.video.sdk.models/-degradation-preference/-m-a-i-n-t-a-i-n_-r-e-s-o-l-u-t-i-o-n/index.html","searchKeys":["MAINTAIN_RESOLUTION","MAINTAIN_RESOLUTION","live.hms.video.sdk.models.DegradationPreference.MAINTAIN_RESOLUTION"]},{"name":"MEDIA_CAPTURED","description":"live.hms.video.diagnostics.models.ConnectivityState.MEDIA_CAPTURED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-m-e-d-i-a_-c-a-p-t-u-r-e-d/index.html","searchKeys":["MEDIA_CAPTURED","MEDIA_CAPTURED","live.hms.video.diagnostics.models.ConnectivityState.MEDIA_CAPTURED"]},{"name":"MEDIA_PUBLISHED","description":"live.hms.video.diagnostics.models.ConnectivityState.MEDIA_PUBLISHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-m-e-d-i-a_-p-u-b-l-i-s-h-e-d/index.html","searchKeys":["MEDIA_PUBLISHED","MEDIA_PUBLISHED","live.hms.video.diagnostics.models.ConnectivityState.MEDIA_PUBLISHED"]},{"name":"MEDIUM","description":"live.hms.video.media.settings.HMSLayer.MEDIUM","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-m-e-d-i-u-m/index.html","searchKeys":["MEDIUM","MEDIUM","live.hms.video.media.settings.HMSLayer.MEDIUM"]},{"name":"METADATA_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.METADATA_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-m-e-t-a-d-a-t-a_-c-h-a-n-g-e-d/index.html","searchKeys":["METADATA_CHANGED","METADATA_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.METADATA_CHANGED"]},{"name":"MUSIC_ONLY","description":"live.hms.video.sdk.models.enums.AudioMixingMode.MUSIC_ONLY","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-m-u-s-i-c_-o-n-l-y/index.html","searchKeys":["MUSIC_ONLY","MUSIC_ONLY","live.hms.video.sdk.models.enums.AudioMixingMode.MUSIC_ONLY"]},{"name":"MUTED","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.MUTED","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/-m-u-t-e-d/index.html","searchKeys":["MUTED","MUTED","live.hms.video.media.settings.HMSTrackSettings.InitState.MUTED"]},{"name":"NAME_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NAME_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-a-m-e_-c-h-a-n-g-e-d/index.html","searchKeys":["NAME_CHANGED","NAME_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.NAME_CHANGED"]},{"name":"NETWORK_QUALITY_UPDATED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NETWORK_QUALITY_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-e-t-w-o-r-k_-q-u-a-l-i-t-y_-u-p-d-a-t-e-d/index.html","searchKeys":["NETWORK_QUALITY_UPDATED","NETWORK_QUALITY_UPDATED","live.hms.video.sdk.models.enums.HMSPeerUpdate.NETWORK_QUALITY_UPDATED"]},{"name":"NONE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.NONE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.NONE"]},{"name":"NONE","description":"live.hms.video.connection.degredation.QualityLimitationReason.NONE","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.connection.degredation.QualityLimitationReason.NONE"]},{"name":"NONE","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.NONE","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.NONE"]},{"name":"NONE","description":"live.hms.video.sdk.models.enums.HMSRecordingState.NONE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.sdk.models.enums.HMSRecordingState.NONE"]},{"name":"NONE","description":"live.hms.video.sdk.models.enums.HMSStreamingState.NONE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.sdk.models.enums.HMSStreamingState.NONE"]},{"name":"NO_BLUETOOTH_CONNECT_PERMISSION","description":"live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_CONNECT_PERMISSION","location":"lib/live.hms.video.audio/-bluetooth-error-type/-n-o_-b-l-u-e-t-o-o-t-h_-c-o-n-n-e-c-t_-p-e-r-m-i-s-s-i-o-n/index.html","searchKeys":["NO_BLUETOOTH_CONNECT_PERMISSION","NO_BLUETOOTH_CONNECT_PERMISSION","live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_CONNECT_PERMISSION"]},{"name":"NO_BLUETOOTH_PERMISSON","description":"live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_PERMISSON","location":"lib/live.hms.video.audio/-bluetooth-error-type/-n-o_-b-l-u-e-t-o-o-t-h_-p-e-r-m-i-s-s-o-n/index.html","searchKeys":["NO_BLUETOOTH_PERMISSON","NO_BLUETOOTH_PERMISSON","live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_PERMISSON"]},{"name":"NO_DOMINANT_SPEAKER","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NO_DOMINANT_SPEAKER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-o_-d-o-m-i-n-a-n-t_-s-p-e-a-k-e-r/index.html","searchKeys":["NO_DOMINANT_SPEAKER","NO_DOMINANT_SPEAKER","live.hms.video.sdk.models.enums.HMSPeerUpdate.NO_DOMINANT_SPEAKER"]},{"name":"OFF","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.OFF","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-o-f-f/index.html","searchKeys":["OFF","OFF","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.OFF"]},{"name":"OFF","description":"live.hms.video.utils.HMSLogger.LogLevel.OFF","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-o-f-f/index.html","searchKeys":["OFF","OFF","live.hms.video.utils.HMSLogger.LogLevel.OFF"]},{"name":"OPUS","description":"live.hms.video.media.codec.HMSAudioCodec.OPUS","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/-o-p-u-s/index.html","searchKeys":["OPUS","OPUS","live.hms.video.media.codec.HMSAudioCodec.OPUS"]},{"name":"OTHER","description":"live.hms.video.connection.degredation.QualityLimitationReason.OTHER","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-o-t-h-e-r/index.html","searchKeys":["OTHER","OTHER","live.hms.video.connection.degredation.QualityLimitationReason.OTHER"]},{"name":"PAUSED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.PAUSED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-p-a-u-s-e-d/index.html","searchKeys":["PAUSED","PAUSED","live.hms.video.sdk.models.enums.HMSRecordingState.PAUSED"]},{"name":"PEER","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.PEER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-p-e-e-r/index.html","searchKeys":["PEER","PEER","live.hms.video.sdk.models.enums.HMSMessageRecipientType.PEER"]},{"name":"PEER_ID","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.PEER_ID","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-p-e-e-r_-i-d/index.html","searchKeys":["PEER_ID","PEER_ID","live.hms.video.polls.models.HmsPollUserTrackingMode.PEER_ID"]},{"name":"PEER_JOINED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_JOINED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-p-e-e-r_-j-o-i-n-e-d/index.html","searchKeys":["PEER_JOINED","PEER_JOINED","live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_JOINED"]},{"name":"PEER_LEFT","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_LEFT","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-p-e-e-r_-l-e-f-t/index.html","searchKeys":["PEER_LEFT","PEER_LEFT","live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_LEFT"]},{"name":"PHONE_RINGING","description":"live.hms.video.audio.AudioChangeEvent.PHONE_RINGING","location":"lib/live.hms.video.audio/-audio-change-event/-p-h-o-n-e_-r-i-n-g-i-n-g/index.html","searchKeys":["PHONE_RINGING","PHONE_RINGING","live.hms.video.audio.AudioChangeEvent.PHONE_RINGING"]},{"name":"POLL","description":"live.hms.video.polls.models.HmsPollCategory.POLL","location":"lib/live.hms.video.polls.models/-hms-poll-category/-p-o-l-l/index.html","searchKeys":["POLL","POLL","live.hms.video.polls.models.HmsPollCategory.POLL"]},{"name":"PREFER_AUDIO_TRACK_STATE","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_AUDIO_TRACK_STATE","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/-p-r-e-f-e-r_-a-u-d-i-o_-t-r-a-c-k_-s-t-a-t-e/index.html","searchKeys":["PREFER_AUDIO_TRACK_STATE","PREFER_AUDIO_TRACK_STATE","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_AUDIO_TRACK_STATE"]},{"name":"PREFER_VIDEO_TRACK_STATE","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_VIDEO_TRACK_STATE","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/-p-r-e-f-e-r_-v-i-d-e-o_-t-r-a-c-k_-s-t-a-t-e/index.html","searchKeys":["PREFER_VIDEO_TRACK_STATE","PREFER_VIDEO_TRACK_STATE","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_VIDEO_TRACK_STATE"]},{"name":"PREINITIALIZED","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.PREINITIALIZED","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-p-r-e-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["PREINITIALIZED","PREINITIALIZED","live.hms.video.audio.HMSAudioManager.AudioManagerState.PREINITIALIZED"]},{"name":"PREVIEW","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.PREVIEW","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/-p-r-e-v-i-e-w/index.html","searchKeys":["PREVIEW","PREVIEW","live.hms.video.sdk.models.enums.RetrySchedulerState.PREVIEW"]},{"name":"PUBLISH_AND_SUBSCRIBE","description":"live.hms.video.sdk.models.enums.HMSMode.PUBLISH_AND_SUBSCRIBE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-p-u-b-l-i-s-h_-a-n-d_-s-u-b-s-c-r-i-b-e/index.html","searchKeys":["PUBLISH_AND_SUBSCRIBE","PUBLISH_AND_SUBSCRIBE","live.hms.video.sdk.models.enums.HMSMode.PUBLISH_AND_SUBSCRIBE"]},{"name":"PUSHLISH_ONLY","description":"live.hms.video.sdk.models.enums.HMSMode.PUSHLISH_ONLY","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-p-u-s-h-l-i-s-h_-o-n-l-y/index.html","searchKeys":["PUSHLISH_ONLY","PUSHLISH_ONLY","live.hms.video.sdk.models.enums.HMSMode.PUSHLISH_ONLY"]},{"name":"QUIZ","description":"live.hms.video.polls.models.HmsPollCategory.QUIZ","location":"lib/live.hms.video.polls.models/-hms-poll-category/-q-u-i-z/index.html","searchKeys":["QUIZ","QUIZ","live.hms.video.polls.models.HmsPollCategory.QUIZ"]},{"name":"REACT_NATIVE","description":"live.hms.video.events.AgentType.REACT_NATIVE","location":"lib/live.hms.video.events/-agent-type/-r-e-a-c-t_-n-a-t-i-v-e/index.html","searchKeys":["REACT_NATIVE","REACT_NATIVE","live.hms.video.events.AgentType.REACT_NATIVE"]},{"name":"REGULAR","description":"live.hms.video.sdk.models.HMSPeerType.REGULAR","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/-r-e-g-u-l-a-r/index.html","searchKeys":["REGULAR","REGULAR","live.hms.video.sdk.models.HMSPeerType.REGULAR"]},{"name":"REPLACE_BACKGROUND","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.REPLACE_BACKGROUND","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-r-e-p-l-a-c-e_-b-a-c-k-g-r-o-u-n-d/index.html","searchKeys":["REPLACE_BACKGROUND","REPLACE_BACKGROUND","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.REPLACE_BACKGROUND"]},{"name":"RESUMED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.RESUMED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-r-e-s-u-m-e-d/index.html","searchKeys":["RESUMED","RESUMED","live.hms.video.sdk.models.enums.HMSRecordingState.RESUMED"]},{"name":"ROLES","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.ROLES","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-r-o-l-e-s/index.html","searchKeys":["ROLES","ROLES","live.hms.video.sdk.models.enums.HMSMessageRecipientType.ROLES"]},{"name":"ROLE_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.ROLE_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-r-o-l-e_-c-h-a-n-g-e-d/index.html","searchKeys":["ROLE_CHANGED","ROLE_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.ROLE_CHANGED"]},{"name":"ROOM_MUTED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_MUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-m-u-t-e-d/index.html","searchKeys":["ROOM_MUTED","ROOM_MUTED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_MUTED"]},{"name":"ROOM_PEER_COUNT_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-p-e-e-r_-c-o-u-n-t_-u-p-d-a-t-e-d/index.html","searchKeys":["ROOM_PEER_COUNT_UPDATED","ROOM_PEER_COUNT_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED"]},{"name":"ROOM_UNMUTED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_UNMUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-u-n-m-u-t-e-d/index.html","searchKeys":["ROOM_UNMUTED","ROOM_UNMUTED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_UNMUTED"]},{"name":"RTMP_STREAMING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.RTMP_STREAMING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-t-m-p_-s-t-r-e-a-m-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["RTMP_STREAMING_STATE_UPDATED","RTMP_STREAMING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.RTMP_STREAMING_STATE_UPDATED"]},{"name":"RUNNING","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.RUNNING","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-r-u-n-n-i-n-g/index.html","searchKeys":["RUNNING","RUNNING","live.hms.video.audio.HMSAudioManager.AudioManagerState.RUNNING"]},{"name":"SERVER_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.SERVER_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-s-e-r-v-e-r_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["SERVER_RECORDING_STATE_UPDATED","SERVER_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.SERVER_RECORDING_STATE_UPDATED"]},{"name":"SIGNAL_CONNECTED","description":"live.hms.video.diagnostics.models.ConnectivityState.SIGNAL_CONNECTED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-s-i-g-n-a-l_-c-o-n-n-e-c-t-e-d/index.html","searchKeys":["SIGNAL_CONNECTED","SIGNAL_CONNECTED","live.hms.video.diagnostics.models.ConnectivityState.SIGNAL_CONNECTED"]},{"name":"SIP","description":"live.hms.video.sdk.models.HMSPeerType.SIP","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/-s-i-p/index.html","searchKeys":["SIP","SIP","live.hms.video.sdk.models.HMSPeerType.SIP"]},{"name":"SPEAKER_PHONE","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.SPEAKER_PHONE","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-s-p-e-a-k-e-r_-p-h-o-n-e/index.html","searchKeys":["SPEAKER_PHONE","SPEAKER_PHONE","live.hms.video.audio.HMSAudioManager.AudioDevice.SPEAKER_PHONE"]},{"name":"SPEAKER_PHONE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.SPEAKER_PHONE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-s-p-e-a-k-e-r_-p-h-o-n-e/index.html","searchKeys":["SPEAKER_PHONE","SPEAKER_PHONE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.SPEAKER_PHONE"]},{"name":"STARTED","description":"live.hms.video.polls.models.HmsPollState.STARTED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.polls.models.HmsPollState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.TranscriptionState.STARTED","location":"lib/live.hms.video.sdk.models/-transcription-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.TranscriptionState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STARTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.enums.HMSRecordingState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STARTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.enums.HMSStreamingState.STARTED"]},{"name":"STARTING","description":"live.hms.video.diagnostics.models.ConnectivityState.STARTING","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.diagnostics.models.ConnectivityState.STARTING"]},{"name":"STARTING","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STARTING","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.sdk.models.enums.HMSRecordingState.STARTING"]},{"name":"STARTING","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STARTING","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.sdk.models.enums.HMSStreamingState.STARTING"]},{"name":"STATISTICS","description":"live.hms.video.utils.HMSLogger.LogFiles.STATISTICS","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/-s-t-a-t-i-s-t-i-c-s/index.html","searchKeys":["STATISTICS","STATISTICS","live.hms.video.utils.HMSLogger.LogFiles.STATISTICS"]},{"name":"STOPPED","description":"live.hms.video.polls.models.HmsPollState.STOPPED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.polls.models.HmsPollState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.TranscriptionState.STOPPED","location":"lib/live.hms.video.sdk.models/-transcription-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.TranscriptionState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STOPPED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.enums.HMSRecordingState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STOPPED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.enums.HMSStreamingState.STOPPED"]},{"name":"SUBSCRIBE_ONLY","description":"live.hms.video.sdk.models.enums.HMSMode.SUBSCRIBE_ONLY","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-s-u-b-s-c-r-i-b-e_-o-n-l-y/index.html","searchKeys":["SUBSCRIBE_ONLY","SUBSCRIBE_ONLY","live.hms.video.sdk.models.enums.HMSMode.SUBSCRIBE_ONLY"]},{"name":"Started","description":"live.hms.video.whiteboard.State.Started","location":"lib/live.hms.video.whiteboard/-state/-started/index.html","searchKeys":["Started","Started","live.hms.video.whiteboard.State.Started"]},{"name":"Stopped","description":"live.hms.video.whiteboard.State.Stopped","location":"lib/live.hms.video.whiteboard/-state/-stopped/index.html","searchKeys":["Stopped","Stopped","live.hms.video.whiteboard.State.Stopped"]},{"name":"TALK_AND_MUSIC","description":"live.hms.video.sdk.models.enums.AudioMixingMode.TALK_AND_MUSIC","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-t-a-l-k_-a-n-d_-m-u-s-i-c/index.html","searchKeys":["TALK_AND_MUSIC","TALK_AND_MUSIC","live.hms.video.sdk.models.enums.AudioMixingMode.TALK_AND_MUSIC"]},{"name":"TALK_ONLY","description":"live.hms.video.sdk.models.enums.AudioMixingMode.TALK_ONLY","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-t-a-l-k_-o-n-l-y/index.html","searchKeys":["TALK_ONLY","TALK_ONLY","live.hms.video.sdk.models.enums.AudioMixingMode.TALK_ONLY"]},{"name":"TRACK_ADDED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_ADDED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-a-d-d-e-d/index.html","searchKeys":["TRACK_ADDED","TRACK_ADDED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_ADDED"]},{"name":"TRACK_DEGRADED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DEGRADED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-d-e-g-r-a-d-e-d/index.html","searchKeys":["TRACK_DEGRADED","TRACK_DEGRADED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DEGRADED"]},{"name":"TRACK_DESCRIPTION_CHANGED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DESCRIPTION_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-d-e-s-c-r-i-p-t-i-o-n_-c-h-a-n-g-e-d/index.html","searchKeys":["TRACK_DESCRIPTION_CHANGED","TRACK_DESCRIPTION_CHANGED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DESCRIPTION_CHANGED"]},{"name":"TRACK_MUTED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_MUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-m-u-t-e-d/index.html","searchKeys":["TRACK_MUTED","TRACK_MUTED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_MUTED"]},{"name":"TRACK_REMOVED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_REMOVED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-r-e-m-o-v-e-d/index.html","searchKeys":["TRACK_REMOVED","TRACK_REMOVED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_REMOVED"]},{"name":"TRACK_RESTORED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_RESTORED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-r-e-s-t-o-r-e-d/index.html","searchKeys":["TRACK_RESTORED","TRACK_RESTORED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_RESTORED"]},{"name":"TRACK_UNMUTED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_UNMUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-u-n-m-u-t-e-d/index.html","searchKeys":["TRACK_UNMUTED","TRACK_UNMUTED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_UNMUTED"]},{"name":"TRANSCRIPTIONS_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.TRANSCRIPTIONS_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-t-r-a-n-s-c-r-i-p-t-i-o-n-s_-u-p-d-a-t-e-d/index.html","searchKeys":["TRANSCRIPTIONS_UPDATED","TRANSCRIPTIONS_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.TRANSCRIPTIONS_UPDATED"]},{"name":"TRANSFORM","description":"live.hms.video.plugin.video.HMSVideoPluginType.TRANSFORM","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/-t-r-a-n-s-f-o-r-m/index.html","searchKeys":["TRANSFORM","TRANSFORM","live.hms.video.plugin.video.HMSVideoPluginType.TRANSFORM"]},{"name":"UNINITIALIZED","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.UNINITIALIZED","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-u-n-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["UNINITIALIZED","UNINITIALIZED","live.hms.video.audio.HMSAudioManager.AudioManagerState.UNINITIALIZED"]},{"name":"UNKNOWN","description":"live.hms.video.connection.degredation.QualityLimitationReason.UNKNOWN","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-u-n-k-n-o-w-n/index.html","searchKeys":["UNKNOWN","UNKNOWN","live.hms.video.connection.degredation.QualityLimitationReason.UNKNOWN"]},{"name":"UNMUTED","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.UNMUTED","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/-u-n-m-u-t-e-d/index.html","searchKeys":["UNMUTED","UNMUTED","live.hms.video.media.settings.HMSTrackSettings.InitState.UNMUTED"]},{"name":"USERNAME","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.USERNAME","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-u-s-e-r-n-a-m-e/index.html","searchKeys":["USERNAME","USERNAME","live.hms.video.polls.models.HmsPollUserTrackingMode.USERNAME"]},{"name":"USER_ID","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.USER_ID","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-u-s-e-r_-i-d/index.html","searchKeys":["USER_ID","USER_ID","live.hms.video.polls.models.HmsPollUserTrackingMode.USER_ID"]},{"name":"VERBOSE","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.VERBOSE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.VERBOSE"]},{"name":"VERBOSE","description":"live.hms.video.utils.HMSLogger.LogLevel.VERBOSE","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE","live.hms.video.utils.HMSLogger.LogLevel.VERBOSE"]},{"name":"VIDEO","description":"live.hms.video.media.tracks.HMSTrackType.VIDEO","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-v-i-d-e-o/index.html","searchKeys":["VIDEO","VIDEO","live.hms.video.media.tracks.HMSTrackType.VIDEO"]},{"name":"VP8","description":"live.hms.video.media.codec.HMSVideoCodec.VP8","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-v-p8/index.html","searchKeys":["VP8","VP8","live.hms.video.media.codec.HMSVideoCodec.VP8"]},{"name":"VP9","description":"live.hms.video.media.codec.HMSVideoCodec.VP9","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-v-p9/index.html","searchKeys":["VP9","VP9","live.hms.video.media.codec.HMSVideoCodec.VP9"]},{"name":"WARN","description":"live.hms.video.utils.HMSLogger.LogLevel.WARN","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-w-a-r-n/index.html","searchKeys":["WARN","WARN","live.hms.video.utils.HMSLogger.LogLevel.WARN"]},{"name":"WIRED_HEADSET","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.WIRED_HEADSET","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-w-i-r-e-d_-h-e-a-d-s-e-t/index.html","searchKeys":["WIRED_HEADSET","WIRED_HEADSET","live.hms.video.audio.HMSAudioManager.AudioDevice.WIRED_HEADSET"]},{"name":"WIRED_HEADSET","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.WIRED_HEADSET","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-w-i-r-e-d_-h-e-a-d-s-e-t/index.html","searchKeys":["WIRED_HEADSET","WIRED_HEADSET","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.WIRED_HEADSET"]},{"name":"abstract class AudioManagerCompat","description":"live.hms.video.audio.manager.AudioManagerCompat","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/index.html","searchKeys":["AudioManagerCompat","abstract class AudioManagerCompat","live.hms.video.audio.manager.AudioManagerCompat"]},{"name":"abstract class HMSMediaStream(nativeStream: MediaStream)","description":"live.hms.video.media.streams.HMSMediaStream","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/index.html","searchKeys":["HMSMediaStream","abstract class HMSMediaStream(nativeStream: MediaStream)","live.hms.video.media.streams.HMSMediaStream"]},{"name":"abstract class HMSPeer","description":"live.hms.video.sdk.models.HMSPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/index.html","searchKeys":["HMSPeer","abstract class HMSPeer","live.hms.video.sdk.models.HMSPeer"]},{"name":"abstract class HMSTrack","description":"live.hms.video.media.tracks.HMSTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-track/index.html","searchKeys":["HMSTrack","abstract class HMSTrack","live.hms.video.media.tracks.HMSTrack"]},{"name":"abstract class LocalTrack : Track","description":"live.hms.video.connection.degredation.Track.LocalTrack","location":"lib/live.hms.video.connection.degredation/-track/-local-track/index.html","searchKeys":["LocalTrack","abstract class LocalTrack : Track","live.hms.video.connection.degredation.Track.LocalTrack"]},{"name":"abstract class RemoteTrack : Track","description":"live.hms.video.connection.degredation.RemoteTrack","location":"lib/live.hms.video.connection.degredation/-remote-track/index.html","searchKeys":["RemoteTrack","abstract class RemoteTrack : Track","live.hms.video.connection.degredation.RemoteTrack"]},{"name":"abstract fun abandonCallAudioFocus()","description":"live.hms.video.audio.manager.AudioManagerCompat.abandonCallAudioFocus","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/abandon-call-audio-focus.html","searchKeys":["abandonCallAudioFocus","abstract fun abandonCallAudioFocus()","live.hms.video.audio.manager.AudioManagerCompat.abandonCallAudioFocus"]},{"name":"abstract fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManager.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","abstract fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManager.addAudioFocusChangeCallback"]},{"name":"abstract fun createSoundPool(): SoundPool","description":"live.hms.video.audio.manager.AudioManagerCompat.createSoundPool","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/create-sound-pool.html","searchKeys":["createSoundPool","abstract fun createSoundPool(): SoundPool","live.hms.video.audio.manager.AudioManagerCompat.createSoundPool"]},{"name":"abstract fun disableEffects()","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.disableEffects","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/disable-effects.html","searchKeys":["disableEffects","abstract fun disableEffects()","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.disableEffects"]},{"name":"abstract fun enableBackground(bitmap: Bitmap)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBackground","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/enable-background.html","searchKeys":["enableBackground","abstract fun enableBackground(bitmap: Bitmap)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBackground"]},{"name":"abstract fun enableBlur(blurPercentage: Int = DEFAULT_BLUR_PERCENTAGE)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBlur","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/enable-blur.html","searchKeys":["enableBlur","abstract fun enableBlur(blurPercentage: Int = DEFAULT_BLUR_PERCENTAGE)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBlur"]},{"name":"abstract fun getAudioDevices(): Set","description":"live.hms.video.audio.HMSAudioManager.getAudioDevices","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-audio-devices.html","searchKeys":["getAudioDevices","abstract fun getAudioDevices(): Set","live.hms.video.audio.HMSAudioManager.getAudioDevices"]},{"name":"abstract fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.HMSAudioManager.getAudioDevicesInfoList","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","abstract fun getAudioDevicesInfoList(): List","live.hms.video.audio.HMSAudioManager.getAudioDevicesInfoList"]},{"name":"abstract fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","abstract fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","live.hms.video.factories.noisecancellation.NoiseCancellation.getAudioProcessingFactory"]},{"name":"abstract fun getCurrentBlurPercentage(): Int","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.getCurrentBlurPercentage","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/get-current-blur-percentage.html","searchKeys":["getCurrentBlurPercentage","abstract fun getCurrentBlurPercentage(): Int","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.getCurrentBlurPercentage"]},{"name":"abstract fun getName(): String","description":"live.hms.video.plugin.video.HMSVideoPlugin.getName","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/get-name.html","searchKeys":["getName","abstract fun getName(): String","live.hms.video.plugin.video.HMSVideoPlugin.getName"]},{"name":"abstract fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","abstract fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellation.getNoiseCancellationEnabled"]},{"name":"abstract fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.plugin.video.HMSVideoPlugin.getPluginType","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/get-plugin-type.html","searchKeys":["getPluginType","abstract fun getPluginType(): HMSVideoPluginType","live.hms.video.plugin.video.HMSVideoPlugin.getPluginType"]},{"name":"abstract fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManager.getSelectedAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-selected-audio-device.html","searchKeys":["getSelectedAudioDevice","abstract fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManager.getSelectedAudioDevice"]},{"name":"abstract fun isStarted(): Boolean","description":"live.hms.video.audio.HMSAudioManager.isStarted","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/is-started.html","searchKeys":["isStarted","abstract fun isStarted(): Boolean","live.hms.video.audio.HMSAudioManager.isStarted"]},{"name":"abstract fun isSupported(): Boolean","description":"live.hms.video.plugin.video.HMSVideoPlugin.isSupported","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/is-supported.html","searchKeys":["isSupported","abstract fun isSupported(): Boolean","live.hms.video.plugin.video.HMSVideoPlugin.isSupported"]},{"name":"abstract fun jniLoad(context: Context): NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactory.jniLoad","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory/jni-load.html","searchKeys":["jniLoad","abstract fun jniLoad(context: Context): NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFactory.jniLoad"]},{"name":"abstract fun onAudioDeviceChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioDevices: Set)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceChanged","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-audio-device-changed.html","searchKeys":["onAudioDeviceChanged","abstract fun onAudioDeviceChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioDevices: Set)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceChanged"]},{"name":"abstract fun onAudioFocusChange(event: AudioChangeEvent)","description":"live.hms.video.audio.AudioManagerFocusChangeCallbacks.onAudioFocusChange","location":"lib/live.hms.video.audio/-audio-manager-focus-change-callbacks/on-audio-focus-change.html","searchKeys":["onAudioFocusChange","abstract fun onAudioFocusChange(event: AudioChangeEvent)","live.hms.video.audio.AudioManagerFocusChangeCallbacks.onAudioFocusChange"]},{"name":"abstract fun onAudioLevelUpdate(speakers: Array)","description":"live.hms.video.sdk.HMSAudioListener.onAudioLevelUpdate","location":"lib/live.hms.video.sdk/-h-m-s-audio-listener/on-audio-level-update.html","searchKeys":["onAudioLevelUpdate","abstract fun onAudioLevelUpdate(speakers: Array)","live.hms.video.sdk.HMSAudioListener.onAudioLevelUpdate"]},{"name":"abstract fun onBluetoothError(errorType: BluetoothErrorType)","description":"live.hms.video.audio.BluetoothErrors.onBluetoothError","location":"lib/live.hms.video.audio/-bluetooth-errors/on-bluetooth-error.html","searchKeys":["onBluetoothError","abstract fun onBluetoothError(errorType: BluetoothErrorType)","live.hms.video.audio.BluetoothErrors.onBluetoothError"]},{"name":"abstract fun onChangeTrackStateRequest(details: HMSChangeTrackStateRequest)","description":"live.hms.video.sdk.HMSUpdateListener.onChangeTrackStateRequest","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-change-track-state-request.html","searchKeys":["onChangeTrackStateRequest","abstract fun onChangeTrackStateRequest(details: HMSChangeTrackStateRequest)","live.hms.video.sdk.HMSUpdateListener.onChangeTrackStateRequest"]},{"name":"abstract fun onCompleted(result: ConnectivityCheckResult)","description":"live.hms.video.diagnostics.ConnectivityCheckListener.onCompleted","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/on-completed.html","searchKeys":["onCompleted","abstract fun onCompleted(result: ConnectivityCheckResult)","live.hms.video.diagnostics.ConnectivityCheckListener.onCompleted"]},{"name":"abstract fun onConnectivityStateChanged(state: ConnectivityState)","description":"live.hms.video.diagnostics.ConnectivityCheckListener.onConnectivityStateChanged","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/on-connectivity-state-changed.html","searchKeys":["onConnectivityStateChanged","abstract fun onConnectivityStateChanged(state: ConnectivityState)","live.hms.video.diagnostics.ConnectivityCheckListener.onConnectivityStateChanged"]},{"name":"abstract fun onError(e: HMSException)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onError","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-error.html","searchKeys":["onError","abstract fun onError(e: HMSException)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onError","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.diagnostics.HMSCameraCheckListener.onError","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.diagnostics.HMSCameraCheckListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.sdk.IErrorListener.onError","location":"lib/live.hms.video.sdk/-i-error-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.sdk.IErrorListener.onError"]},{"name":"abstract fun onFrame(bitmap: Bitmap): Bitmap","description":"live.hms.video.plugin.video.utils.HMSBitmapUpdateListener.onFrame","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-update-listener/on-frame.html","searchKeys":["onFrame","abstract fun onFrame(bitmap: Bitmap): Bitmap","live.hms.video.plugin.video.utils.HMSBitmapUpdateListener.onFrame"]},{"name":"abstract fun onFrame(rotatedWidth: Int, rotatedHeight: Int, rotation: Int)","description":"live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener.onFrame","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-frame-info-listener/on-frame.html","searchKeys":["onFrame","abstract fun onFrame(rotatedWidth: Int, rotatedHeight: Int, rotation: Int)","live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener.onFrame"]},{"name":"abstract fun onFrameCaptured(bitmap: Bitmap)","description":"live.hms.video.sdk.HmsVideoFrameListener.onFrameCaptured","location":"lib/live.hms.video.sdk/-hms-video-frame-listener/on-frame-captured.html","searchKeys":["onFrameCaptured","abstract fun onFrameCaptured(bitmap: Bitmap)","live.hms.video.sdk.HmsVideoFrameListener.onFrameCaptured"]},{"name":"abstract fun onJoin(room: HMSRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onJoin","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-join.html","searchKeys":["onJoin","abstract fun onJoin(room: HMSRoom)","live.hms.video.sdk.HMSUpdateListener.onJoin"]},{"name":"abstract fun onKeyChanged(key: String, value: JsonElement?)","description":"live.hms.video.sessionstore.HMSKeyChangeListener.onKeyChanged","location":"lib/live.hms.video.sessionstore/-h-m-s-key-change-listener/on-key-changed.html","searchKeys":["onKeyChanged","abstract fun onKeyChanged(key: String, value: JsonElement?)","live.hms.video.sessionstore.HMSKeyChangeListener.onKeyChanged"]},{"name":"abstract fun onLayoutSuccess(layout: HMSRoomLayout)","description":"live.hms.video.signal.init.HMSLayoutListener.onLayoutSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-layout-listener/on-layout-success.html","searchKeys":["onLayoutSuccess","abstract fun onLayoutSuccess(layout: HMSRoomLayout)","live.hms.video.signal.init.HMSLayoutListener.onLayoutSuccess"]},{"name":"abstract fun onLogMessage(level: HMSLogger.LogLevel, tag: String, message: String, isWebRtCLog: Boolean)","description":"live.hms.video.utils.HMSLogger.Loggable.onLogMessage","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/on-log-message.html","searchKeys":["onLogMessage","abstract fun onLogMessage(level: HMSLogger.LogLevel, tag: String, message: String, isWebRtCLog: Boolean)","live.hms.video.utils.HMSLogger.Loggable.onLogMessage"]},{"name":"abstract fun onMessageReceived(message: HMSMessage)","description":"live.hms.video.sdk.HMSUpdateListener.onMessageReceived","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-message-received.html","searchKeys":["onMessageReceived","abstract fun onMessageReceived(message: HMSMessage)","live.hms.video.sdk.HMSUpdateListener.onMessageReceived"]},{"name":"abstract fun onNetworkQuality(quality: HMSNetworkQuality, peer: HMSPeer?)","description":"live.hms.video.connection.stats.quality.HMSNetworkObserver.onNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-observer/on-network-quality.html","searchKeys":["onNetworkQuality","abstract fun onNetworkQuality(quality: HMSNetworkQuality, peer: HMSPeer?)","live.hms.video.connection.stats.quality.HMSNetworkObserver.onNetworkQuality"]},{"name":"abstract fun onOutputResult(output: VideoFrame?)","description":"live.hms.video.sdk.HMSPluginResultListener.onOutputResult","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/on-output-result.html","searchKeys":["onOutputResult","abstract fun onOutputResult(output: VideoFrame?)","live.hms.video.sdk.HMSPluginResultListener.onOutputResult"]},{"name":"abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","description":"live.hms.video.sdk.HMSPreviewListener.onPeerUpdate","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-peer-update.html","searchKeys":["onPeerUpdate","abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","live.hms.video.sdk.HMSPreviewListener.onPeerUpdate"]},{"name":"abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","description":"live.hms.video.sdk.HMSUpdateListener.onPeerUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-peer-update.html","searchKeys":["onPeerUpdate","abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","live.hms.video.sdk.HMSUpdateListener.onPeerUpdate"]},{"name":"abstract fun onPollUpdate(hmsPoll: HmsPoll, hmsPollUpdateType: HMSPollUpdateType)","description":"live.hms.video.interactivity.HmsPollUpdateListener.onPollUpdate","location":"lib/live.hms.video.interactivity/-hms-poll-update-listener/on-poll-update.html","searchKeys":["onPollUpdate","abstract fun onPollUpdate(hmsPoll: HmsPoll, hmsPollUpdateType: HMSPollUpdateType)","live.hms.video.interactivity.HmsPollUpdateListener.onPollUpdate"]},{"name":"abstract fun onPreview(room: HMSRoom, localTracks: Array)","description":"live.hms.video.sdk.HMSPreviewListener.onPreview","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-preview.html","searchKeys":["onPreview","abstract fun onPreview(room: HMSRoom, localTracks: Array)","live.hms.video.sdk.HMSPreviewListener.onPreview"]},{"name":"abstract fun onRoleChangeRequest(request: HMSRoleChangeRequest)","description":"live.hms.video.sdk.HMSUpdateListener.onRoleChangeRequest","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-role-change-request.html","searchKeys":["onRoleChangeRequest","abstract fun onRoleChangeRequest(request: HMSRoleChangeRequest)","live.hms.video.sdk.HMSUpdateListener.onRoleChangeRequest"]},{"name":"abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","description":"live.hms.video.sdk.HMSPreviewListener.onRoomUpdate","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-room-update.html","searchKeys":["onRoomUpdate","abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","live.hms.video.sdk.HMSPreviewListener.onRoomUpdate"]},{"name":"abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onRoomUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-room-update.html","searchKeys":["onRoomUpdate","abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","live.hms.video.sdk.HMSUpdateListener.onRoomUpdate"]},{"name":"abstract fun onSuccess()","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onSuccess","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess()","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onSuccess"]},{"name":"abstract fun onSuccess()","description":"live.hms.video.sdk.HMSActionResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-action-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess()","live.hms.video.sdk.HMSActionResultListener.onSuccess"]},{"name":"abstract fun onSuccess(currentLayer: String)","description":"live.hms.video.sdk.HMSAddSinkResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-add-sink-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(currentLayer: String)","live.hms.video.sdk.HMSAddSinkResultListener.onSuccess"]},{"name":"abstract fun onSuccess(hmsMessage: HMSMessage)","description":"live.hms.video.sdk.HMSMessageResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-message-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(hmsMessage: HMSMessage)","live.hms.video.sdk.HMSMessageResultListener.onSuccess"]},{"name":"abstract fun onSuccess(result: ArrayList)","description":"live.hms.video.sdk.listeners.PeerListResultListener.onSuccess","location":"lib/live.hms.video.sdk.listeners/-peer-list-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: ArrayList)","live.hms.video.sdk.listeners.PeerListResultListener.onSuccess"]},{"name":"abstract fun onSuccess(result: T)","description":"live.hms.video.sdk.HmsTypedActionResultListener.onSuccess","location":"lib/live.hms.video.sdk/-hms-typed-action-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: T)","live.hms.video.sdk.HmsTypedActionResultListener.onSuccess"]},{"name":"abstract fun onSuccess(sessionMetadata: JsonElement?)","description":"live.hms.video.sdk.HMSSessionMetadataListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-session-metadata-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(sessionMetadata: JsonElement?)","live.hms.video.sdk.HMSSessionMetadataListener.onSuccess"]},{"name":"abstract fun onTimeTaken(timeObject: ProcessTimeVariables)","description":"live.hms.video.sdk.HMSPluginResultListener.onTimeTaken","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/on-time-taken.html","searchKeys":["onTimeTaken","abstract fun onTimeTaken(timeObject: ProcessTimeVariables)","live.hms.video.sdk.HMSPluginResultListener.onTimeTaken"]},{"name":"abstract fun onTokenSuccess(string: String)","description":"live.hms.video.signal.init.HMSTokenListener.onTokenSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-token-listener/on-token-success.html","searchKeys":["onTokenSuccess","abstract fun onTokenSuccess(string: String)","live.hms.video.signal.init.HMSTokenListener.onTokenSuccess"]},{"name":"abstract fun onTrackUpdate(type: HMSTrackUpdate, track: HMSTrack, peer: HMSPeer)","description":"live.hms.video.sdk.HMSUpdateListener.onTrackUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-track-update.html","searchKeys":["onTrackUpdate","abstract fun onTrackUpdate(type: HMSTrackUpdate, track: HMSTrack, peer: HMSPeer)","live.hms.video.sdk.HMSUpdateListener.onTrackUpdate"]},{"name":"abstract fun onTracks(localTracks: Array)","description":"live.hms.video.sdk.RolePreviewListener.onTracks","location":"lib/live.hms.video.sdk/-role-preview-listener/on-tracks.html","searchKeys":["onTracks","abstract fun onTracks(localTracks: Array)","live.hms.video.sdk.RolePreviewListener.onTracks"]},{"name":"abstract fun onUpdate(hmsWhiteboardUpdate: HMSWhiteboardUpdate)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdateListener.onUpdate","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update-listener/on-update.html","searchKeys":["onUpdate","abstract fun onUpdate(hmsWhiteboardUpdate: HMSWhiteboardUpdate)","live.hms.video.whiteboard.HMSWhiteboardUpdateListener.onUpdate"]},{"name":"abstract fun onVideoTrack(localVideoTrack: HMSVideoTrack)","description":"live.hms.video.diagnostics.HMSCameraCheckListener.onVideoTrack","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/on-video-track.html","searchKeys":["onVideoTrack","abstract fun onVideoTrack(localVideoTrack: HMSVideoTrack)","live.hms.video.diagnostics.HMSCameraCheckListener.onVideoTrack"]},{"name":"abstract fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.plugin.video.HMSVideoPlugin.processVideoFrame","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/process-video-frame.html","searchKeys":["processVideoFrame","abstract fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.plugin.video.HMSVideoPlugin.processVideoFrame"]},{"name":"abstract fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManager.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","abstract fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManager.removeAudioFocusChangeCallback"]},{"name":"abstract fun requestCallAudioFocus(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.requestCallAudioFocus","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/request-call-audio-focus.html","searchKeys":["requestCallAudioFocus","abstract fun requestCallAudioFocus(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.requestCallAudioFocus"]},{"name":"abstract fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.HMSAudioManager.selectAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/select-audio-device.html","searchKeys":["selectAudioDevice","abstract fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.HMSAudioManager.selectAudioDevice"]},{"name":"abstract fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.HMSAudioManager.setAudioMode","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/set-audio-mode.html","searchKeys":["setAudioMode","abstract fun setAudioMode(audioMode: Int)","live.hms.video.audio.HMSAudioManager.setAudioMode"]},{"name":"abstract fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/set-description.html","searchKeys":["setDescription","abstract fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalTrack.setDescription"]},{"name":"abstract fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/set-mute.html","searchKeys":["setMute","abstract fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalTrack.setMute"]},{"name":"abstract fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","abstract fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellation.setNoiseCancellationEnabled"]},{"name":"abstract fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.setVideoFrameInfoListener","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/set-video-frame-info-listener.html","searchKeys":["setVideoFrameInfoListener","abstract fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.setVideoFrameInfoListener"]},{"name":"abstract fun start()","description":"live.hms.video.audio.HMSAudioManager.start","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/start.html","searchKeys":["start","abstract fun start()","live.hms.video.audio.HMSAudioManager.start"]},{"name":"abstract fun start()","description":"live.hms.video.media.capturers.HMSCapturer.start","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/start.html","searchKeys":["start","abstract fun start()","live.hms.video.media.capturers.HMSCapturer.start"]},{"name":"abstract fun stop()","description":"live.hms.video.audio.HMSAudioManager.stop","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.audio.HMSAudioManager.stop"]},{"name":"abstract fun stop()","description":"live.hms.video.media.capturers.HMSCapturer.stop","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.media.capturers.HMSCapturer.stop"]},{"name":"abstract fun stop()","description":"live.hms.video.plugin.video.HMSVideoPlugin.stop","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.plugin.video.HMSVideoPlugin.stop"]},{"name":"abstract override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.RemoteTrack.bytesTransported","location":"lib/live.hms.video.connection.degredation/-remote-track/bytes-transported.html","searchKeys":["bytesTransported","abstract override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.RemoteTrack.bytesTransported"]},{"name":"abstract override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-remote-track/remote-timestamp.html","searchKeys":["remoteTimestamp","abstract override val remoteTimestamp: Double?","live.hms.video.connection.degredation.RemoteTrack.remoteTimestamp"]},{"name":"abstract override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.RemoteTrack.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-remote-track/track-identifier.html","searchKeys":["trackIdentifier","abstract override val trackIdentifier: String?","live.hms.video.connection.degredation.RemoteTrack.trackIdentifier"]},{"name":"abstract suspend fun init()","description":"live.hms.video.plugin.video.HMSVideoPlugin.init","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/init.html","searchKeys":["init","abstract suspend fun init()","live.hms.video.plugin.video.HMSVideoPlugin.init"]},{"name":"abstract val audioTrack: HMSAudioTrack?","description":"live.hms.video.sdk.models.HMSPeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/audio-track.html","searchKeys":["audioTrack","abstract val audioTrack: HMSAudioTrack?","live.hms.video.sdk.models.HMSPeer.audioTrack"]},{"name":"abstract val audio_concealed_samples: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealed_samples","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_concealed_samples.html","searchKeys":["audio_concealed_samples","abstract val audio_concealed_samples: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealed_samples"]},{"name":"abstract val audio_concealment_events: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealment_events","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_concealment_events.html","searchKeys":["audio_concealment_events","abstract val audio_concealment_events: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealment_events"]},{"name":"abstract val audio_level_high_seconds: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_level_high_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_level_high_seconds.html","searchKeys":["audio_level_high_seconds","abstract val audio_level_high_seconds: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_level_high_seconds"]},{"name":"abstract val audio_total_samples_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_total_samples_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_total_samples_received.html","searchKeys":["audio_total_samples_received","abstract val audio_total_samples_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_total_samples_received"]},{"name":"abstract val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","abstract val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgAvailableOutgoingBitrateBps"]},{"name":"abstract val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","abstract val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgBitrateBps"]},{"name":"abstract val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-jitter-ms.html","searchKeys":["avgJitterMs","abstract val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgJitterMs"]},{"name":"abstract val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","abstract val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgRoundTripTimeMs"]},{"name":"abstract val avg_av_sync_ms: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_av_sync_ms","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_av_sync_ms.html","searchKeys":["avg_av_sync_ms","abstract val avg_av_sync_ms: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_av_sync_ms"]},{"name":"abstract val avg_frames_decoded_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_decoded_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_decoded_per_sec.html","searchKeys":["avg_frames_decoded_per_sec","abstract val avg_frames_decoded_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_decoded_per_sec"]},{"name":"abstract val avg_frames_dropped_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_dropped_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_dropped_per_sec.html","searchKeys":["avg_frames_dropped_per_sec","abstract val avg_frames_dropped_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_dropped_per_sec"]},{"name":"abstract val avg_frames_received_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_received_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_received_per_sec.html","searchKeys":["avg_frames_received_per_sec","abstract val avg_frames_received_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_received_per_sec"]},{"name":"abstract val avg_jitter_buffer_delay: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_jitter_buffer_delay.html","searchKeys":["avg_jitter_buffer_delay","abstract val avg_jitter_buffer_delay: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_jitter_buffer_delay"]},{"name":"abstract val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/bytes-transported.html","searchKeys":["bytesTransported","abstract val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.bytesTransported"]},{"name":"abstract val fec_packets_discarded: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_discarded","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/fec_packets_discarded.html","searchKeys":["fec_packets_discarded","abstract val fec_packets_discarded: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_discarded"]},{"name":"abstract val fec_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/fec_packets_received.html","searchKeys":["fec_packets_received","abstract val fec_packets_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_received"]},{"name":"abstract val frame_height: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_height","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/frame_height.html","searchKeys":["frame_height","abstract val frame_height: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_height"]},{"name":"abstract val frame_width: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_width","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/frame_width.html","searchKeys":["frame_width","abstract val frame_width: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_width"]},{"name":"abstract val freeze_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/freeze_count.html","searchKeys":["freeze_count","abstract val freeze_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_count"]},{"name":"abstract val freeze_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/freeze_duration_seconds.html","searchKeys":["freeze_duration_seconds","abstract val freeze_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_duration_seconds"]},{"name":"abstract val jitter: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.jitter","location":"lib/live.hms.video.connection.degredation/-remote-track/jitter.html","searchKeys":["jitter","abstract val jitter: Double?","live.hms.video.connection.degredation.RemoteTrack.jitter"]},{"name":"abstract val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-remote-track/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","abstract val jitterBufferDelay: Double?","live.hms.video.connection.degredation.RemoteTrack.jitterBufferDelay"]},{"name":"abstract val jitter_buffer_delay: Double","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/jitter_buffer_delay.html","searchKeys":["jitter_buffer_delay","abstract val jitter_buffer_delay: Double","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.jitter_buffer_delay"]},{"name":"abstract val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-remote-track/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","abstract val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.RemoteTrack.lastPacketReceivedTimestamp"]},{"name":"abstract val packetsLost: Int?","description":"live.hms.video.connection.degredation.RemoteTrack.packetsLost","location":"lib/live.hms.video.connection.degredation/-remote-track/packets-lost.html","searchKeys":["packetsLost","abstract val packetsLost: Int?","live.hms.video.connection.degredation.RemoteTrack.packetsLost"]},{"name":"abstract val packetsReceived: Long?","description":"live.hms.video.connection.degredation.RemoteTrack.packetsReceived","location":"lib/live.hms.video.connection.degredation/-remote-track/packets-received.html","searchKeys":["packetsReceived","abstract val packetsReceived: Long?","live.hms.video.connection.degredation.RemoteTrack.packetsReceived"]},{"name":"abstract val pause_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/pause_count.html","searchKeys":["pause_count","abstract val pause_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_count"]},{"name":"abstract val pause_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/pause_duration_seconds.html","searchKeys":["pause_duration_seconds","abstract val pause_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_duration_seconds"]},{"name":"abstract val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/remote-timestamp.html","searchKeys":["remoteTimestamp","abstract val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.remoteTimestamp"]},{"name":"abstract val source: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/source.html","searchKeys":["source","abstract val source: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.source"]},{"name":"abstract val ssrc: Long?","description":"live.hms.video.connection.degredation.RemoteTrack.ssrc","location":"lib/live.hms.video.connection.degredation/-remote-track/ssrc.html","searchKeys":["ssrc","abstract val ssrc: Long?","live.hms.video.connection.degredation.RemoteTrack.ssrc"]},{"name":"abstract val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/ssrc.html","searchKeys":["ssrc","abstract val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.ssrc"]},{"name":"abstract val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/ssrc.html","searchKeys":["ssrc","abstract val ssrc: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.ssrc"]},{"name":"abstract val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.BaseSample.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-base-sample/timestamp.html","searchKeys":["timestamp","abstract val timestamp: Long","live.hms.video.connection.stats.clientside.model.BaseSample.timestamp"]},{"name":"abstract val timestampUs: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.timestampUs","location":"lib/live.hms.video.connection.degredation/-remote-track/timestamp-us.html","searchKeys":["timestampUs","abstract val timestampUs: Double?","live.hms.video.connection.degredation.RemoteTrack.timestampUs"]},{"name":"abstract val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/total-packets-lost.html","searchKeys":["totalPacketsLost","abstract val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.totalPacketsLost"]},{"name":"abstract val total_nack_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_nack_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/total_nack_count.html","searchKeys":["total_nack_count","abstract val total_nack_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_nack_count"]},{"name":"abstract val total_packets_lost: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_lost","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_packets_lost.html","searchKeys":["total_packets_lost","abstract val total_packets_lost: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_lost"]},{"name":"abstract val total_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_packets_received.html","searchKeys":["total_packets_received","abstract val total_packets_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_received"]},{"name":"abstract val total_pli_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_pli_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/total_pli_count.html","searchKeys":["total_pli_count","abstract val total_pli_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_pli_count"]},{"name":"abstract val total_samples_duration: Float","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_samples_duration","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_samples_duration.html","searchKeys":["total_samples_duration","abstract val total_samples_duration: Float","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_samples_duration"]},{"name":"abstract val trackId: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/track-id.html","searchKeys":["trackId","abstract val trackId: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.trackId"]},{"name":"abstract val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/track-identifier.html","searchKeys":["trackIdentifier","abstract val trackIdentifier: String?","live.hms.video.connection.degredation.Track.trackIdentifier"]},{"name":"abstract val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-track/type.html","searchKeys":["type","abstract val type: HMSTrackType","live.hms.video.media.tracks.HMSTrack.type"]},{"name":"abstract val videoTrack: HMSVideoTrack?","description":"live.hms.video.sdk.models.HMSPeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/video-track.html","searchKeys":["videoTrack","abstract val videoTrack: HMSVideoTrack?","live.hms.video.sdk.models.HMSPeer.videoTrack"]},{"name":"abstract var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","abstract var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteTrack.isPlaybackAllowed"]},{"name":"abstract var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/ssrc.html","searchKeys":["ssrc","abstract var ssrc: Long","live.hms.video.media.tracks.HMSRemoteTrack.ssrc"]},{"name":"annotation class Unstable(val message: String = \"This API is unstable and may not do what it implies. Please wait for a stable version.\")","description":"live.hms.video.sdk.Unstable","location":"lib/live.hms.video.sdk/-unstable/index.html","searchKeys":["Unstable","annotation class Unstable(val message: String = \"This API is unstable and may not do what it implies. Please wait for a stable version.\")","live.hms.video.sdk.Unstable"]},{"name":"annotation class YuvType","description":"live.hms.video.media.capturers.camera.utils.YuvType","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-type/index.html","searchKeys":["YuvType","annotation class YuvType","live.hms.video.media.capturers.camera.utils.YuvType"]},{"name":"class AudioInputDeviceReport","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/index.html","searchKeys":["AudioInputDeviceReport","class AudioInputDeviceReport","live.hms.video.diagnostics.models.AudioInputDeviceReport"]},{"name":"class AudioOutputDeviceReport","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/index.html","searchKeys":["AudioOutputDeviceReport","class AudioOutputDeviceReport","live.hms.video.diagnostics.models.AudioOutputDeviceReport"]},{"name":"class BitMatrix(bitmap: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.BitMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/index.html","searchKeys":["BitMatrix","class BitMatrix(bitmap: Bitmap)","live.hms.video.media.capturers.camera.utils.BitMatrix"]},{"name":"class BluetoothPermissionHandler(val hmsTrackSettings: HMSTrackSettings)","description":"live.hms.video.audio.BluetoothPermissionHandler","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/index.html","searchKeys":["BluetoothPermissionHandler","class BluetoothPermissionHandler(val hmsTrackSettings: HMSTrackSettings)","live.hms.video.audio.BluetoothPermissionHandler"]},{"name":"class Brb","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-brb/index.html","searchKeys":["Brb","class Brb","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.polls.HMSPollBuilder.Builder"]},{"name":"class Builder(context: Context)","description":"live.hms.video.sdk.HMSSDK.Builder","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/index.html","searchKeys":["Builder","class Builder(context: Context)","live.hms.video.sdk.HMSSDK.Builder"]},{"name":"class Builder(val type: HMSPollQuestionType)","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/index.html","searchKeys":["Builder","class Builder(val type: HMSPollQuestionType)","live.hms.video.polls.HMSPollQuestionBuilder.Builder"]},{"name":"class CameraControl","description":"live.hms.video.media.capturers.camera.CameraControl","location":"lib/live.hms.video.media.capturers.camera/-camera-control/index.html","searchKeys":["CameraControl","class CameraControl","live.hms.video.media.capturers.camera.CameraControl"]},{"name":"class ConnectivityCheckResult","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/index.html","searchKeys":["ConnectivityCheckResult","class ConnectivityCheckResult","live.hms.video.diagnostics.models.ConnectivityCheckResult"]},{"name":"class DeviceTestReport","description":"live.hms.video.diagnostics.models.DeviceTestReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/index.html","searchKeys":["DeviceTestReport","class DeviceTestReport","live.hms.video.diagnostics.models.DeviceTestReport"]},{"name":"class EmojiReactions","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-emoji-reactions/index.html","searchKeys":["EmojiReactions","class EmojiReactions","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions"]},{"name":"class FeatureFlags(flags: Set)","description":"live.hms.video.sdk.featureflags.FeatureFlags","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/index.html","searchKeys":["FeatureFlags","class FeatureFlags(flags: Set)","live.hms.video.sdk.featureflags.FeatureFlags"]},{"name":"class HMSAudioManagerApi31 : HMSAudioManager","description":"live.hms.video.audio.manager.HMSAudioManagerApi31","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/index.html","searchKeys":["HMSAudioManagerApi31","class HMSAudioManagerApi31 : HMSAudioManager","live.hms.video.audio.manager.HMSAudioManagerApi31"]},{"name":"class HMSAudioTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSAudioTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/index.html","searchKeys":["HMSAudioTrackSettings","class HMSAudioTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSAudioTrackSettings"]},{"name":"class HMSBitmapPlugin(val hmsSDK: HMSSDK, val hmsBitmapUpdateListener: HMSBitmapUpdateListener) : HMSVideoPlugin","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/index.html","searchKeys":["HMSBitmapPlugin","class HMSBitmapPlugin(val hmsSDK: HMSSDK, val hmsBitmapUpdateListener: HMSBitmapUpdateListener) : HMSVideoPlugin","live.hms.video.plugin.video.utils.HMSBitmapPlugin"]},{"name":"class HMSDiagnostics","description":"live.hms.video.diagnostics.HMSDiagnostics","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/index.html","searchKeys":["HMSDiagnostics","class HMSDiagnostics","live.hms.video.diagnostics.HMSDiagnostics"]},{"name":"class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap = hashMapOf()) : Exception, IAnalyticsPropertiesProvider","description":"live.hms.video.error.HMSException","location":"lib/live.hms.video.error/-h-m-s-exception/index.html","searchKeys":["HMSException","class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap = hashMapOf()) : Exception, IAnalyticsPropertiesProvider","live.hms.video.error.HMSException"]},{"name":"class HMSLocalAudioTrack : HMSAudioTrack, HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/index.html","searchKeys":["HMSLocalAudioTrack","class HMSLocalAudioTrack : HMSAudioTrack, HMSLocalTrack","live.hms.video.media.tracks.HMSLocalAudioTrack"]},{"name":"class HMSLocalPeer : HMSPeer","description":"live.hms.video.sdk.models.HMSLocalPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/index.html","searchKeys":["HMSLocalPeer","class HMSLocalPeer : HMSPeer","live.hms.video.sdk.models.HMSLocalPeer"]},{"name":"class HMSLocalVideoTrack : HMSVideoTrack, HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html","searchKeys":["HMSLocalVideoTrack","class HMSLocalVideoTrack : HMSVideoTrack, HMSLocalTrack","live.hms.video.media.tracks.HMSLocalVideoTrack"]},{"name":"class HMSMessageRecipient","description":"live.hms.video.sdk.models.HMSMessageRecipient","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/index.html","searchKeys":["HMSMessageRecipient","class HMSMessageRecipient","live.hms.video.sdk.models.HMSMessageRecipient"]},{"name":"class HMSPollBuilder","description":"live.hms.video.polls.HMSPollBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/index.html","searchKeys":["HMSPollBuilder","class HMSPollBuilder","live.hms.video.polls.HMSPollBuilder"]},{"name":"class HMSPollQuestionBuilder","description":"live.hms.video.polls.HMSPollQuestionBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/index.html","searchKeys":["HMSPollQuestionBuilder","class HMSPollQuestionBuilder","live.hms.video.polls.HMSPollQuestionBuilder"]},{"name":"class HMSPollResponseBuilder(val hmsPoll: HmsPoll, val userId: String?)","description":"live.hms.video.polls.HMSPollResponseBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/index.html","searchKeys":["HMSPollResponseBuilder","class HMSPollResponseBuilder(val hmsPoll: HmsPoll, val userId: String?)","live.hms.video.polls.HMSPollResponseBuilder"]},{"name":"class HMSRemoteAudioTrack : HMSAudioTrack, HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/index.html","searchKeys":["HMSRemoteAudioTrack","class HMSRemoteAudioTrack : HMSAudioTrack, HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteAudioTrack"]},{"name":"class HMSRemotePeer : HMSPeer","description":"live.hms.video.sdk.models.HMSRemotePeer","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/index.html","searchKeys":["HMSRemotePeer","class HMSRemotePeer : HMSPeer","live.hms.video.sdk.models.HMSRemotePeer"]},{"name":"class HMSRemoteVideoTrack : HMSVideoTrack, HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/index.html","searchKeys":["HMSRemoteVideoTrack","class HMSRemoteVideoTrack : HMSVideoTrack, HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteVideoTrack"]},{"name":"class HMSSDK","description":"live.hms.video.sdk.HMSSDK","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/index.html","searchKeys":["HMSSDK","class HMSSDK","live.hms.video.sdk.HMSSDK"]},{"name":"class HMSScreenCaptureService : Service","description":"live.hms.video.services.HMSScreenCaptureService","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html","searchKeys":["HMSScreenCaptureService","class HMSScreenCaptureService : Service","live.hms.video.services.HMSScreenCaptureService"]},{"name":"class HMSSimulcastSettings","description":"live.hms.video.media.settings.HMSSimulcastSettings","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/index.html","searchKeys":["HMSSimulcastSettings","class HMSSimulcastSettings","live.hms.video.media.settings.HMSSimulcastSettings"]},{"name":"class HMSTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/index.html","searchKeys":["HMSTrackSettings","class HMSTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSTrackSettings"]},{"name":"class HMSTranscriptionPermissions","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/index.html","searchKeys":["HMSTranscriptionPermissions","class HMSTranscriptionPermissions","live.hms.video.sdk.models.role.HMSTranscriptionPermissions"]},{"name":"class HMSVideoDecoderFactory(eglContext: EglBase.Context, val forceSoftwareDecoder: Boolean = false) : DefaultVideoDecoderFactory","description":"live.hms.video.factories.HMSVideoDecoderFactory","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/index.html","searchKeys":["HMSVideoDecoderFactory","class HMSVideoDecoderFactory(eglContext: EglBase.Context, val forceSoftwareDecoder: Boolean = false) : DefaultVideoDecoderFactory","live.hms.video.factories.HMSVideoDecoderFactory"]},{"name":"class HMSVideoTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSVideoTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/index.html","searchKeys":["HMSVideoTrackSettings","class HMSVideoTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSVideoTrackSettings"]},{"name":"class HandRaise","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-hand-raise/index.html","searchKeys":["HandRaise","class HandRaise","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise"]},{"name":"class HmsInteractivityCenter","description":"live.hms.video.interactivity.HmsInteractivityCenter","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/index.html","searchKeys":["HmsInteractivityCenter","class HmsInteractivityCenter","live.hms.video.interactivity.HmsInteractivityCenter"]},{"name":"class HmsSessionStore","description":"live.hms.video.sessionstore.HmsSessionStore","location":"lib/live.hms.video.sessionstore/-hms-session-store/index.html","searchKeys":["HmsSessionStore","class HmsSessionStore","live.hms.video.sessionstore.HmsSessionStore"]},{"name":"class HmsUtilities","description":"live.hms.video.utils.HmsUtilities","location":"lib/live.hms.video.utils/-hms-utilities/index.html","searchKeys":["HmsUtilities","class HmsUtilities","live.hms.video.utils.HmsUtilities"]},{"name":"class IceCandidatePair","description":"live.hms.video.diagnostics.models.IceCandidatePair","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/index.html","searchKeys":["IceCandidatePair","class IceCandidatePair","live.hms.video.diagnostics.models.IceCandidatePair"]},{"name":"class Leave","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-leave/index.html","searchKeys":["Leave","class Leave","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave"]},{"name":"class LogAlarmManager : BroadcastReceiver","description":"live.hms.video.services.LogAlarmManager","location":"lib/live.hms.video.services/-log-alarm-manager/index.html","searchKeys":["LogAlarmManager","class LogAlarmManager : BroadcastReceiver","live.hms.video.services.LogAlarmManager"]},{"name":"class MediaServerReport","description":"live.hms.video.diagnostics.models.MediaServerReport","location":"lib/live.hms.video.diagnostics.models/-media-server-report/index.html","searchKeys":["MediaServerReport","class MediaServerReport","live.hms.video.diagnostics.models.MediaServerReport"]},{"name":"class MicrophoneUtils","description":"live.hms.video.utils.MicrophoneUtils","location":"lib/live.hms.video.utils/-microphone-utils/index.html","searchKeys":["MicrophoneUtils","class MicrophoneUtils","live.hms.video.utils.MicrophoneUtils"]},{"name":"class NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker) : NoiseCancellationFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/index.html","searchKeys":["NoiseCancellationFactoryImpl","class NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker) : NoiseCancellationFactory","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl"]},{"name":"class NoiseCancellationFake(val libraryPresent: Boolean, val enabledFromDashboard: Boolean) : NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/index.html","searchKeys":["NoiseCancellationFake","class NoiseCancellationFake(val libraryPresent: Boolean, val enabledFromDashboard: Boolean) : NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFake"]},{"name":"class NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean) : NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/index.html","searchKeys":["NoiseCancellationImpl","class NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean) : NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationImpl"]},{"name":"class NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/index.html","searchKeys":["NoiseCancellationStatusChecker","class NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker"]},{"name":"class OfflineAnalyticsPeerInfo : Closeable","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html","searchKeys":["OfflineAnalyticsPeerInfo","class OfflineAnalyticsPeerInfo : Closeable","live.hms.video.sdk.OfflineAnalyticsPeerInfo"]},{"name":"class OrientationTools","description":"live.hms.video.media.capturers.camera.utils.OrientationTools","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/index.html","searchKeys":["OrientationTools","class OrientationTools","live.hms.video.media.capturers.camera.utils.OrientationTools"]},{"name":"class ParticipantList","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-participant-list/index.html","searchKeys":["ParticipantList","class ParticipantList","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList"]},{"name":"class PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","description":"live.hms.video.sdk.models.PeerListIterator","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/index.html","searchKeys":["PeerListIterator","class PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","live.hms.video.sdk.models.PeerListIterator"]},{"name":"class PeerSearchResponse","description":"live.hms.video.sdk.models.PeerSearchResponse","location":"lib/live.hms.video.sdk.models/-peer-search-response/index.html","searchKeys":["PeerSearchResponse","class PeerSearchResponse","live.hms.video.sdk.models.PeerSearchResponse"]},{"name":"class PublishAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String, val source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/index.html","searchKeys":["PublishAudioStatsSampler","class PublishAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String, val source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler"]},{"name":"class PublishVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val rid: String?, val ssrc: String, val source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/index.html","searchKeys":["PublishVideoStatsSampler","class PublishVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val rid: String?, val ssrc: String, val source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler"]},{"name":"class SafeVariable","description":"live.hms.video.factories.SafeVariable","location":"lib/live.hms.video.factories/-safe-variable/index.html","searchKeys":["SafeVariable","class SafeVariable","live.hms.video.factories.SafeVariable"]},{"name":"class SignallingReport","description":"live.hms.video.diagnostics.models.SignallingReport","location":"lib/live.hms.video.diagnostics.models/-signalling-report/index.html","searchKeys":["SignallingReport","class SignallingReport","live.hms.video.diagnostics.models.SignallingReport"]},{"name":"class SignatureChecker(applicationContext: Context)","description":"live.hms.video.sdk.SignatureChecker","location":"lib/live.hms.video.sdk/-signature-checker/index.html","searchKeys":["SignatureChecker","class SignatureChecker(applicationContext: Context)","live.hms.video.sdk.SignatureChecker"]},{"name":"class SpeedTest","description":"live.hms.video.sdk.SpeedTest","location":"lib/live.hms.video.sdk/-speed-test/index.html","searchKeys":["SpeedTest","class SpeedTest","live.hms.video.sdk.SpeedTest"]},{"name":"class SubscribeAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/index.html","searchKeys":["SubscribeAudioStatsSampler","class SubscribeAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler"]},{"name":"class SubscribeVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/index.html","searchKeys":["SubscribeVideoStatsSampler","class SubscribeVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler"]},{"name":"class Transcriptions","description":"live.hms.video.sdk.models.Transcriptions","location":"lib/live.hms.video.sdk.models/-transcriptions/index.html","searchKeys":["Transcriptions","class Transcriptions","live.hms.video.sdk.models.Transcriptions"]},{"name":"class TypeConverter","description":"live.hms.video.database.converters.TypeConverter","location":"lib/live.hms.video.database.converters/-type-converter/index.html","searchKeys":["TypeConverter","class TypeConverter","live.hms.video.database.converters.TypeConverter"]},{"name":"class VideoInputDeviceReport","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/index.html","searchKeys":["VideoInputDeviceReport","class VideoInputDeviceReport","live.hms.video.diagnostics.models.VideoInputDeviceReport"]},{"name":"class WertcAudioUtils","description":"live.hms.video.utils.WertcAudioUtils","location":"lib/live.hms.video.utils/-wertc-audio-utils/index.html","searchKeys":["WertcAudioUtils","class WertcAudioUtils","live.hms.video.utils.WertcAudioUtils"]},{"name":"class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/index.html","searchKeys":["YuvByteBuffer","class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","live.hms.video.media.capturers.camera.utils.YuvByteBuffer"]},{"name":"class YuvToRgbConverter(context: Context)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/index.html","searchKeys":["YuvToRgbConverter","class YuvToRgbConverter(context: Context)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter"]},{"name":"const val ACTION_START: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_START","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-a-c-t-i-o-n_-s-t-a-r-t.html","searchKeys":["ACTION_START","const val ACTION_START: String","live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_START"]},{"name":"const val ACTION_STOP: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_STOP","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-a-c-t-i-o-n_-s-t-o-p.html","searchKeys":["ACTION_STOP","const val ACTION_STOP: String","live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_STOP"]},{"name":"const val CHAT: String","description":"live.hms.video.sdk.models.enums.HMSMessageType.CHAT","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/-c-h-a-t.html","searchKeys":["CHAT","const val CHAT: String","live.hms.video.sdk.models.enums.HMSMessageType.CHAT"]},{"name":"const val DEFAULT_BLUR_PERCENTAGE: Int = 75","description":"live.hms.video.plugin.video.virtualbackground.DEFAULT_BLUR_PERCENTAGE","location":"lib/live.hms.video.plugin.video.virtualbackground/-d-e-f-a-u-l-t_-b-l-u-r_-p-e-r-c-e-n-t-a-g-e.html","searchKeys":["DEFAULT_BLUR_PERCENTAGE","const val DEFAULT_BLUR_PERCENTAGE: Int = 75","live.hms.video.plugin.video.virtualbackground.DEFAULT_BLUR_PERCENTAGE"]},{"name":"const val DEFAULT_DIR_SIZE: Long = 1000000","description":"live.hms.video.services.LogAlarmManager.Companion.DEFAULT_DIR_SIZE","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-d-e-f-a-u-l-t_-d-i-r_-s-i-z-e.html","searchKeys":["DEFAULT_DIR_SIZE","const val DEFAULT_DIR_SIZE: Long = 1000000","live.hms.video.services.LogAlarmManager.Companion.DEFAULT_DIR_SIZE"]},{"name":"const val DEFAULT_DIR_SIZE: Long = 1000000","description":"live.hms.video.utils.LogUtils.DEFAULT_DIR_SIZE","location":"lib/live.hms.video.utils/-log-utils/-d-e-f-a-u-l-t_-d-i-r_-s-i-z-e.html","searchKeys":["DEFAULT_DIR_SIZE","const val DEFAULT_DIR_SIZE: Long = 1000000","live.hms.video.utils.LogUtils.DEFAULT_DIR_SIZE"]},{"name":"const val DEFAULT_LOGS_FILE_NAME: String","description":"live.hms.video.services.LogAlarmManager.Companion.DEFAULT_LOGS_FILE_NAME","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-d-e-f-a-u-l-t_-l-o-g-s_-f-i-l-e_-n-a-m-e.html","searchKeys":["DEFAULT_LOGS_FILE_NAME","const val DEFAULT_LOGS_FILE_NAME: String","live.hms.video.services.LogAlarmManager.Companion.DEFAULT_LOGS_FILE_NAME"]},{"name":"const val FLAG_MUTABLE: Int = 33554432","description":"live.hms.video.utils.AndroidSDKConstants.FLAG_MUTABLE","location":"lib/live.hms.video.utils/-android-s-d-k-constants/-f-l-a-g_-m-u-t-a-b-l-e.html","searchKeys":["FLAG_MUTABLE","const val FLAG_MUTABLE: Int = 33554432","live.hms.video.utils.AndroidSDKConstants.FLAG_MUTABLE"]},{"name":"const val LOCAL_SCREEN_CAPTURER_THREAD: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.LOCAL_SCREEN_CAPTURER_THREAD","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-l-o-c-a-l_-s-c-r-e-e-n_-c-a-p-t-u-r-e-r_-t-h-r-e-a-d.html","searchKeys":["LOCAL_SCREEN_CAPTURER_THREAD","const val LOCAL_SCREEN_CAPTURER_THREAD: String","live.hms.video.services.HMSScreenCaptureService.Companion.LOCAL_SCREEN_CAPTURER_THREAD"]},{"name":"const val MAX_DIR_SIZE: String","description":"live.hms.video.services.LogAlarmManager.Companion.MAX_DIR_SIZE","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-m-a-x_-d-i-r_-s-i-z-e.html","searchKeys":["MAX_DIR_SIZE","const val MAX_DIR_SIZE: String","live.hms.video.services.LogAlarmManager.Companion.MAX_DIR_SIZE"]},{"name":"const val MAX_DIR_SIZE: String","description":"live.hms.video.utils.LogUtils.MAX_DIR_SIZE","location":"lib/live.hms.video.utils/-log-utils/-m-a-x_-d-i-r_-s-i-z-e.html","searchKeys":["MAX_DIR_SIZE","const val MAX_DIR_SIZE: String","live.hms.video.utils.LogUtils.MAX_DIR_SIZE"]},{"name":"const val PERMISSION_RESULT_DATA: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.PERMISSION_RESULT_DATA","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-p-e-r-m-i-s-s-i-o-n_-r-e-s-u-l-t_-d-a-t-a.html","searchKeys":["PERMISSION_RESULT_DATA","const val PERMISSION_RESULT_DATA: String","live.hms.video.services.HMSScreenCaptureService.Companion.PERMISSION_RESULT_DATA"]},{"name":"const val PLUGIN: String","description":"live.hms.video.media.tracks.HMSTrackSource.PLUGIN","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-p-l-u-g-i-n.html","searchKeys":["PLUGIN","const val PLUGIN: String","live.hms.video.media.tracks.HMSTrackSource.PLUGIN"]},{"name":"const val PLUGIN: String","description":"live.hms.video.sdk.models.enums.HMSMessageType.PLUGIN","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/-p-l-u-g-i-n.html","searchKeys":["PLUGIN","const val PLUGIN: String","live.hms.video.sdk.models.enums.HMSMessageType.PLUGIN"]},{"name":"const val REGULAR: String","description":"live.hms.video.media.tracks.HMSTrackSource.REGULAR","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-r-e-g-u-l-a-r.html","searchKeys":["REGULAR","const val REGULAR: String","live.hms.video.media.tracks.HMSTrackSource.REGULAR"]},{"name":"const val SCREEN: String","description":"live.hms.video.media.tracks.HMSTrackSource.SCREEN","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-s-c-r-e-e-n.html","searchKeys":["SCREEN","const val SCREEN: String","live.hms.video.media.tracks.HMSTrackSource.SCREEN"]},{"name":"const val SCREEN_HEIGHT: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_HEIGHT","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-s-c-r-e-e-n_-h-e-i-g-h-t.html","searchKeys":["SCREEN_HEIGHT","const val SCREEN_HEIGHT: String","live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_HEIGHT"]},{"name":"const val SCREEN_WIDTH: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_WIDTH","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-s-c-r-e-e-n_-w-i-d-t-h.html","searchKeys":["SCREEN_WIDTH","const val SCREEN_WIDTH: String","live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_WIDTH"]},{"name":"const val TAG: String","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion.TAG","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion.TAG"]},{"name":"const val TAG: String","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.TAG","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.TAG"]},{"name":"const val VERSION: ","description":"live.hms.video.sdk.HMSSDK.Companion.VERSION","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/-v-e-r-s-i-o-n.html","searchKeys":["VERSION","const val VERSION: ","live.hms.video.sdk.HMSSDK.Companion.VERSION"]},{"name":"const val WEBRTC_VERSION: ","description":"live.hms.video.sdk.HMSSDK.Companion.WEBRTC_VERSION","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/-w-e-b-r-t-c_-v-e-r-s-i-o-n.html","searchKeys":["WEBRTC_VERSION","const val WEBRTC_VERSION: ","live.hms.video.sdk.HMSSDK.Companion.WEBRTC_VERSION"]},{"name":"const val cAlreadyJoined: Int = 5001","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cAlreadyJoined","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/c-already-joined.html","searchKeys":["cAlreadyJoined","const val cAlreadyJoined: Int = 5001","live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cAlreadyJoined"]},{"name":"const val cApiDataChannelLabel: String","description":"live.hms.video.utils.cApiDataChannelLabel","location":"lib/live.hms.video.utils/c-api-data-channel-label.html","searchKeys":["cApiDataChannelLabel","const val cApiDataChannelLabel: String","live.hms.video.utils.cApiDataChannelLabel"]},{"name":"const val cCantAccessCaptureDevice: Int = 3001","description":"live.hms.video.error.ErrorCodes.TracksErrors.cCantAccessCaptureDevice","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-cant-access-capture-device.html","searchKeys":["cCantAccessCaptureDevice","const val cCantAccessCaptureDevice: Int = 3001","live.hms.video.error.ErrorCodes.TracksErrors.cCantAccessCaptureDevice"]},{"name":"const val cCodecChangeNotPermitted: Int = 3007","description":"live.hms.video.error.ErrorCodes.TracksErrors.cCodecChangeNotPermitted","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-codec-change-not-permitted.html","searchKeys":["cCodecChangeNotPermitted","const val cCodecChangeNotPermitted: Int = 3007","live.hms.video.error.ErrorCodes.TracksErrors.cCodecChangeNotPermitted"]},{"name":"const val cConnectionLost: Int = 2001","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cConnectionLost","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-connection-lost.html","searchKeys":["cConnectionLost","const val cConnectionLost: Int = 2001","live.hms.video.error.ErrorCodes.InitAPIErrors.cConnectionLost"]},{"name":"const val cCreateAnswerFailed: Int = 4002","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateAnswerFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-create-answer-failed.html","searchKeys":["cCreateAnswerFailed","const val cCreateAnswerFailed: Int = 4002","live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateAnswerFailed"]},{"name":"const val cCreateOfferFailed: Int = 4001","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateOfferFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-create-offer-failed.html","searchKeys":["cCreateOfferFailed","const val cCreateOfferFailed: Int = 4001","live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateOfferFailed"]},{"name":"const val cDefaultDiagnosticEndpoint: String","description":"live.hms.video.utils.cDefaultDiagnosticEndpoint","location":"lib/live.hms.video.utils/c-default-diagnostic-endpoint.html","searchKeys":["cDefaultDiagnosticEndpoint","const val cDefaultDiagnosticEndpoint: String","live.hms.video.utils.cDefaultDiagnosticEndpoint"]},{"name":"const val cDefaultInitEndpoint: String","description":"live.hms.video.utils.cDefaultInitEndpoint","location":"lib/live.hms.video.utils/c-default-init-endpoint.html","searchKeys":["cDefaultInitEndpoint","const val cDefaultInitEndpoint: String","live.hms.video.utils.cDefaultInitEndpoint"]},{"name":"const val cEndpointUnreachable: Int = 2003","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cEndpointUnreachable","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-endpoint-unreachable.html","searchKeys":["cEndpointUnreachable","const val cEndpointUnreachable: Int = 2003","live.hms.video.error.ErrorCodes.InitAPIErrors.cEndpointUnreachable"]},{"name":"const val cGenericConnect: Int = 1000","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cGenericConnect","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/c-generic-connect.html","searchKeys":["cGenericConnect","const val cGenericConnect: Int = 1000","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cGenericConnect"]},{"name":"const val cGenericTrack: Int = 3000","description":"live.hms.video.error.ErrorCodes.TracksErrors.cGenericTrack","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-generic-track.html","searchKeys":["cGenericTrack","const val cGenericTrack: Int = 3000","live.hms.video.error.ErrorCodes.TracksErrors.cGenericTrack"]},{"name":"const val cHTTPError: Int = 2400","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cHTTPError","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-h-t-t-p-error.html","searchKeys":["cHTTPError","const val cHTTPError: Int = 2400","live.hms.video.error.ErrorCodes.InitAPIErrors.cHTTPError"]},{"name":"const val cICEFailure: Int = 4005","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cICEFailure","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-i-c-e-failure.html","searchKeys":["cICEFailure","const val cICEFailure: Int = 4005","live.hms.video.error.ErrorCodes.WebrtcErrors.cICEFailure"]},{"name":"const val cInconsistencyDetectBufferDelay: Long","description":"live.hms.video.utils.cInconsistencyDetectBufferDelay","location":"lib/live.hms.video.utils/c-inconsistency-detect-buffer-delay.html","searchKeys":["cInconsistencyDetectBufferDelay","const val cInconsistencyDetectBufferDelay: Long","live.hms.video.utils.cInconsistencyDetectBufferDelay"]},{"name":"const val cInconsistencyDetectTimerDelay: Long","description":"live.hms.video.utils.cInconsistencyDetectTimerDelay","location":"lib/live.hms.video.utils/c-inconsistency-detect-timer-delay.html","searchKeys":["cInconsistencyDetectTimerDelay","const val cInconsistencyDetectTimerDelay: Long","live.hms.video.utils.cInconsistencyDetectTimerDelay"]},{"name":"const val cInvalidEndpointURL: Int = 2002","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidEndpointURL","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-invalid-endpoint-u-r-l.html","searchKeys":["cInvalidEndpointURL","const val cInvalidEndpointURL: Int = 2002","live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidEndpointURL"]},{"name":"const val cInvalidTokenFormat: Int = 2004","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidTokenFormat","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-invalid-token-format.html","searchKeys":["cInvalidTokenFormat","const val cInvalidTokenFormat: Int = 2004","live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidTokenFormat"]},{"name":"const val cInvalidVideoSettings: Int = 3006","description":"live.hms.video.error.ErrorCodes.TracksErrors.cInvalidVideoSettings","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-invalid-video-settings.html","searchKeys":["cInvalidVideoSettings","const val cInvalidVideoSettings: Int = 3006","live.hms.video.error.ErrorCodes.TracksErrors.cInvalidVideoSettings"]},{"name":"const val cJsonParsingFailed: Int = 6004","description":"live.hms.video.error.ErrorCodes.GenericErrors.cJsonParsingFailed","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-json-parsing-failed.html","searchKeys":["cJsonParsingFailed","const val cJsonParsingFailed: Int = 6004","live.hms.video.error.ErrorCodes.GenericErrors.cJsonParsingFailed"]},{"name":"const val cJsonRpcVersion: String","description":"live.hms.video.utils.cJsonRpcVersion","location":"lib/live.hms.video.utils/c-json-rpc-version.html","searchKeys":["cJsonRpcVersion","const val cJsonRpcVersion: String","live.hms.video.utils.cJsonRpcVersion"]},{"name":"const val cMaxJoinAPIRetryTimeMillis: Long","description":"live.hms.video.utils.cMaxJoinAPIRetryTimeMillis","location":"lib/live.hms.video.utils/c-max-join-a-p-i-retry-time-millis.html","searchKeys":["cMaxJoinAPIRetryTimeMillis","const val cMaxJoinAPIRetryTimeMillis: Long","live.hms.video.utils.cMaxJoinAPIRetryTimeMillis"]},{"name":"const val cMaxTransportRetries: Int = 5","description":"live.hms.video.utils.cMaxTransportRetries","location":"lib/live.hms.video.utils/c-max-transport-retries.html","searchKeys":["cMaxTransportRetries","const val cMaxTransportRetries: Int = 5","live.hms.video.utils.cMaxTransportRetries"]},{"name":"const val cMaxTransportRetryDelay: Long","description":"live.hms.video.utils.cMaxTransportRetryDelay","location":"lib/live.hms.video.utils/c-max-transport-retry-delay.html","searchKeys":["cMaxTransportRetryDelay","const val cMaxTransportRetryDelay: Long","live.hms.video.utils.cMaxTransportRetryDelay"]},{"name":"const val cMaxTransportRetryTimeMillis: Long","description":"live.hms.video.utils.cMaxTransportRetryTimeMillis","location":"lib/live.hms.video.utils/c-max-transport-retry-time-millis.html","searchKeys":["cMaxTransportRetryTimeMillis","const val cMaxTransportRetryTimeMillis: Long","live.hms.video.utils.cMaxTransportRetryTimeMillis"]},{"name":"const val cNotConnected: Int = 6000","description":"live.hms.video.error.ErrorCodes.GenericErrors.cNotConnected","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-not-connected.html","searchKeys":["cNotConnected","const val cNotConnected: Int = 6000","live.hms.video.error.ErrorCodes.GenericErrors.cNotConnected"]},{"name":"const val cNotReady: Int = 6003","description":"live.hms.video.error.ErrorCodes.GenericErrors.cNotReady","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-not-ready.html","searchKeys":["cNotReady","const val cNotReady: Int = 6003","live.hms.video.error.ErrorCodes.GenericErrors.cNotReady"]},{"name":"const val cNothingToReturn: Int = 3005","description":"live.hms.video.error.ErrorCodes.TracksErrors.cNothingToReturn","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-nothing-to-return.html","searchKeys":["cNothingToReturn","const val cNothingToReturn: Int = 3005","live.hms.video.error.ErrorCodes.TracksErrors.cNothingToReturn"]},{"name":"const val cPeerConnectionFactoryDisposed: Int = 3004","description":"live.hms.video.error.ErrorCodes.TracksErrors.cPeerConnectionFactoryDisposed","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-peer-connection-factory-disposed.html","searchKeys":["cPeerConnectionFactoryDisposed","const val cPeerConnectionFactoryDisposed: Int = 3004","live.hms.video.error.ErrorCodes.TracksErrors.cPeerConnectionFactoryDisposed"]},{"name":"const val cPeerMetadataMissing: Int = 6007","description":"live.hms.video.error.ErrorCodes.GenericErrors.cPeerMetadataMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-peer-metadata-missing.html","searchKeys":["cPeerMetadataMissing","const val cPeerMetadataMissing: Int = 6007","live.hms.video.error.ErrorCodes.GenericErrors.cPeerMetadataMissing"]},{"name":"const val cPublishRenegotiationCallback: String","description":"live.hms.video.utils.cPublishRenegotiationCallback","location":"lib/live.hms.video.utils/c-publish-renegotiation-callback.html","searchKeys":["cPublishRenegotiationCallback","const val cPublishRenegotiationCallback: String","live.hms.video.utils.cPublishRenegotiationCallback"]},{"name":"const val cRTCTrackMissing: Int = 6006","description":"live.hms.video.error.ErrorCodes.GenericErrors.cRTCTrackMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-r-t-c-track-missing.html","searchKeys":["cRTCTrackMissing","const val cRTCTrackMissing: Int = 6006","live.hms.video.error.ErrorCodes.GenericErrors.cRTCTrackMissing"]},{"name":"const val cServerErrors: Int = 2000","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cServerErrors","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-server-errors.html","searchKeys":["cServerErrors","const val cServerErrors: Int = 2000","live.hms.video.error.ErrorCodes.InitAPIErrors.cServerErrors"]},{"name":"const val cServerErrors: Int = 5000","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cServerErrors","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/c-server-errors.html","searchKeys":["cServerErrors","const val cServerErrors: Int = 5000","live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cServerErrors"]},{"name":"const val cSetLocalDescriptionFailed: Int = 4003","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cSetLocalDescriptionFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-set-local-description-failed.html","searchKeys":["cSetLocalDescriptionFailed","const val cSetLocalDescriptionFailed: Int = 4003","live.hms.video.error.ErrorCodes.WebrtcErrors.cSetLocalDescriptionFailed"]},{"name":"const val cSetRemoteDescriptionFailed: Int = 4004","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cSetRemoteDescriptionFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-set-remote-description-failed.html","searchKeys":["cSetRemoteDescriptionFailed","const val cSetRemoteDescriptionFailed: Int = 4004","live.hms.video.error.ErrorCodes.WebrtcErrors.cSetRemoteDescriptionFailed"]},{"name":"const val cSignalling: Int = 6001","description":"live.hms.video.error.ErrorCodes.GenericErrors.cSignalling","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-signalling.html","searchKeys":["cSignalling","const val cSignalling: Int = 6001","live.hms.video.error.ErrorCodes.GenericErrors.cSignalling"]},{"name":"const val cSubscribeIceRestartWaitTimeout: Long","description":"live.hms.video.utils.cSubscribeIceRestartWaitTimeout","location":"lib/live.hms.video.utils/c-subscribe-ice-restart-wait-timeout.html","searchKeys":["cSubscribeIceRestartWaitTimeout","const val cSubscribeIceRestartWaitTimeout: Long","live.hms.video.utils.cSubscribeIceRestartWaitTimeout"]},{"name":"const val cSubscribeRenegotiationCallback: String","description":"live.hms.video.utils.cSubscribeRenegotiationCallback","location":"lib/live.hms.video.utils/c-subscribe-renegotiation-callback.html","searchKeys":["cSubscribeRenegotiationCallback","const val cSubscribeRenegotiationCallback: String","live.hms.video.utils.cSubscribeRenegotiationCallback"]},{"name":"const val cTrackMetadataMissing: Int = 6005","description":"live.hms.video.error.ErrorCodes.GenericErrors.cTrackMetadataMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-track-metadata-missing.html","searchKeys":["cTrackMetadataMissing","const val cTrackMetadataMissing: Int = 6005","live.hms.video.error.ErrorCodes.GenericErrors.cTrackMetadataMissing"]},{"name":"const val cUnknown: Int = 6002","description":"live.hms.video.error.ErrorCodes.GenericErrors.cUnknown","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-unknown.html","searchKeys":["cUnknown","const val cUnknown: Int = 6002","live.hms.video.error.ErrorCodes.GenericErrors.cUnknown"]},{"name":"const val cWebSocketConnectionLost: Int = 1003","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cWebSocketConnectionLost","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/c-web-socket-connection-lost.html","searchKeys":["cWebSocketConnectionLost","const val cWebSocketConnectionLost: Int = 1003","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cWebSocketConnectionLost"]},{"name":"data class AnalyticsCluster(var websocketUrl: String = \"\")","description":"live.hms.video.database.entity.AnalyticsCluster","location":"lib/live.hms.video.database.entity/-analytics-cluster/index.html","searchKeys":["AnalyticsCluster","data class AnalyticsCluster(var websocketUrl: String = \"\")","live.hms.video.database.entity.AnalyticsCluster"]},{"name":"data class AnalyticsPeer(var peerId: String? = null, var role: String? = null, var joinedAt: Long? = null, var leftAt: Long? = null, var roomName: String? = null, var sessionStartedAt: Long? = null, var userData: String? = null, var userName: String? = null, var templateId: String? = null, var sessionId: String? = null)","description":"live.hms.video.database.entity.AnalyticsPeer","location":"lib/live.hms.video.database.entity/-analytics-peer/index.html","searchKeys":["AnalyticsPeer","data class AnalyticsPeer(var peerId: String? = null, var role: String? = null, var joinedAt: Long? = null, var leftAt: Long? = null, var roomName: String? = null, var sessionStartedAt: Long? = null, var userData: String? = null, var userName: String? = null, var templateId: String? = null, var sessionId: String? = null)","live.hms.video.database.entity.AnalyticsPeer"]},{"name":"data class Audio : RemoteTrack","description":"live.hms.video.connection.degredation.Audio","location":"lib/live.hms.video.connection.degredation/-audio/index.html","searchKeys":["Audio","data class Audio : RemoteTrack","live.hms.video.connection.degredation.Audio"]},{"name":"data class AudioAnalytics(val audioSample: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/index.html","searchKeys":["AudioAnalytics","data class AudioAnalytics(val audioSample: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","live.hms.video.connection.stats.clientside.model.AudioAnalytics"]},{"name":"data class AudioParams(val bitRate: Int, val codec: HMSAudioCodec)","description":"live.hms.video.sdk.models.role.AudioParams","location":"lib/live.hms.video.sdk.models.role/-audio-params/index.html","searchKeys":["AudioParams","data class AudioParams(val bitRate: Int, val codec: HMSAudioCodec)","live.hms.video.sdk.models.role.AudioParams"]},{"name":"data class AudioSamplesPublish(val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long) : PublishBaseSamples","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/index.html","searchKeys":["AudioSamplesPublish","data class AudioSamplesPublish(val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long) : PublishBaseSamples","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish"]},{"name":"data class AudioSamplesSubscribe(val timestamp: Long, val audio_level_high_seconds: Long, val audio_concealed_samples: Long, val audio_total_samples_received: Long, val audio_concealment_events: Long, val fec_packets_discarded: Long, val fec_packets_received: Long, val total_samples_duration: Float, val total_packets_received: Long, val total_packets_lost: Long, val jitter_buffer_delay: Double) : SubscribeBaseSample","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/index.html","searchKeys":["AudioSamplesSubscribe","data class AudioSamplesSubscribe(val timestamp: Long, val audio_level_high_seconds: Long, val audio_concealed_samples: Long, val audio_total_samples_received: Long, val audio_concealment_events: Long, val fec_packets_discarded: Long, val fec_packets_received: Long, val total_samples_duration: Float, val total_packets_received: Long, val total_packets_lost: Long, val jitter_buffer_delay: Double) : SubscribeBaseSample","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe"]},{"name":"data class Browser(val enabled: Boolean?, val startedAt: Long?, val stoppedAt: Long?, val initialisedAt: Long?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Browser","location":"lib/live.hms.video.sdk.peerlist.models/-browser/index.html","searchKeys":["Browser","data class Browser(val enabled: Boolean?, val startedAt: Long?, val stoppedAt: Long?, val initialisedAt: Long?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Browser"]},{"name":"data class Chat(val allowPinningMessages: Boolean?, val initialState: String?, val overlayView: Boolean?, val publicChatEnabled: Boolean, val rolesWhiteList: List?, val privateChatEnabled: Boolean, val chatTitle: String, val messagePlaceholder: String, val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/index.html","searchKeys":["Chat","data class Chat(val allowPinningMessages: Boolean?, val initialState: String?, val overlayView: Boolean?, val publicChatEnabled: Boolean, val rolesWhiteList: List?, val privateChatEnabled: Boolean, val chatTitle: String, val messagePlaceholder: String, val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat"]},{"name":"data class Conferencing(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/index.html","searchKeys":["Conferencing","data class Conferencing(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing"]},{"name":"data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/index.html","searchKeys":["Default","data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default"]},{"name":"data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/index.html","searchKeys":["Default","data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default"]},{"name":"data class Elements(val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/index.html","searchKeys":["Elements","data class Elements(val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements"]},{"name":"data class Elements(val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/index.html","searchKeys":["Elements","data class Elements(val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements"]},{"name":"data class ErrorTokenResult(val errorMessage: String?)","description":"live.hms.video.signal.init.ErrorTokenResult","location":"lib/live.hms.video.signal.init/-error-token-result/index.html","searchKeys":["ErrorTokenResult","data class ErrorTokenResult(val errorMessage: String?)","live.hms.video.signal.init.ErrorTokenResult"]},{"name":"data class FrameworkInfo(val framework: AgentType, val frameworkSdkVersion: String? = null, val frameworkVersion: String? = null, val isPrebuilt: Boolean)","description":"live.hms.video.sdk.models.FrameworkInfo","location":"lib/live.hms.video.sdk.models/-framework-info/index.html","searchKeys":["FrameworkInfo","data class FrameworkInfo(val framework: AgentType, val frameworkSdkVersion: String? = null, val frameworkVersion: String? = null, val isPrebuilt: Boolean)","live.hms.video.sdk.models.FrameworkInfo"]},{"name":"data class Grid(val enableLocalTileInset: Boolean?, val enableSpotlightingPeer: Boolean?, val prominentRoles: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/index.html","searchKeys":["Grid","data class Grid(val enableLocalTileInset: Boolean?, val enableSpotlightingPeer: Boolean?, val prominentRoles: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid"]},{"name":"data class GroupJoinLeaveResponse(val groups: ArrayList?)","description":"live.hms.video.groups.GroupJoinLeaveResponse","location":"lib/live.hms.video.groups/-group-join-leave-response/index.html","searchKeys":["GroupJoinLeaveResponse","data class GroupJoinLeaveResponse(val groups: ArrayList?)","live.hms.video.groups.GroupJoinLeaveResponse"]},{"name":"data class HLSLiveStreamingHeader(val title: String?, val description: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/index.html","searchKeys":["HLSLiveStreamingHeader","data class HLSLiveStreamingHeader(val title: String?, val description: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader"]},{"name":"data class HMSAudioDeviceInfo(val type: HMSAudioManager.AudioDevice, val name: String)","description":"live.hms.video.audio.HMSAudioDeviceInfo","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/index.html","searchKeys":["HMSAudioDeviceInfo","data class HMSAudioDeviceInfo(val type: HMSAudioManager.AudioDevice, val name: String)","live.hms.video.audio.HMSAudioDeviceInfo"]},{"name":"data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/index.html","searchKeys":["HMSBackgroundMedia","data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia"]},{"name":"data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/index.html","searchKeys":["HMSBackgroundMedia","data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia"]},{"name":"data class HMSBrowserRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, val initialising: Boolean = false, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSBrowserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/index.html","searchKeys":["HMSBrowserRecordingState","data class HMSBrowserRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, val initialising: Boolean = false, val state: HMSRecordingState)","live.hms.video.sdk.models.HMSBrowserRecordingState"]},{"name":"data class HMSChangeTrackStateRequest(val track: HMSTrack, val requestedBy: HMSPeer?, val mute: Boolean)","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/index.html","searchKeys":["HMSChangeTrackStateRequest","data class HMSChangeTrackStateRequest(val track: HMSTrack, val requestedBy: HMSPeer?, val mute: Boolean)","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest"]},{"name":"data class HMSColorPalette(val alertErrorBright: String?, val alertErrorBrighter: String?, val alertErrorDefault: String?, val alertErrorDim: String?, val alertSuccess: String?, val alertWarning: String?, val backgroundDefault: String?, val backgroundDim: String?, val borderBright: String?, val borderDefault: String?, val onPrimaryHigh: String?, val onPrimaryLow: String?, val onPrimaryMedium: String?, val onSecondaryHigh: String?, val onSecondaryLow: String?, val onSecondaryMedium: String?, val onSurfaceHigh: String?, val onSurfaceLow: String?, val onSurfaceMedium: String?, val primaryBright: String?, val primaryDefault: String?, val primaryDim: String?, val primaryDisabled: String?, val secondaryBright: String?, val secondaryDefault: String?, val secondaryDim: String?, val secondaryDisabled: String?, val surfaceBright: String?, val surfaceBrighter: String?, val surfaceDefault: String?, val surfaceDim: String?, val borderLight: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/index.html","searchKeys":["HMSColorPalette","data class HMSColorPalette(val alertErrorBright: String?, val alertErrorBrighter: String?, val alertErrorDefault: String?, val alertErrorDim: String?, val alertSuccess: String?, val alertWarning: String?, val backgroundDefault: String?, val backgroundDim: String?, val borderBright: String?, val borderDefault: String?, val onPrimaryHigh: String?, val onPrimaryLow: String?, val onPrimaryMedium: String?, val onSecondaryHigh: String?, val onSecondaryLow: String?, val onSecondaryMedium: String?, val onSurfaceHigh: String?, val onSurfaceLow: String?, val onSurfaceMedium: String?, val primaryBright: String?, val primaryDefault: String?, val primaryDim: String?, val primaryDisabled: String?, val secondaryBright: String?, val secondaryDefault: String?, val secondaryDim: String?, val secondaryDisabled: String?, val surfaceBright: String?, val surfaceBrighter: String?, val surfaceDefault: String?, val surfaceDim: String?, val borderLight: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette"]},{"name":"data class HMSConfig constructor(val userName: String, val authtoken: String, var metadata: String = \"\", var captureNetworkQualityInPreview: Boolean = false, val initEndpoint: String = cDefaultInitEndpoint)","description":"live.hms.video.sdk.models.HMSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-config/index.html","searchKeys":["HMSConfig","data class HMSConfig constructor(val userName: String, val authtoken: String, var metadata: String = \"\", var captureNetworkQualityInPreview: Boolean = false, val initEndpoint: String = cDefaultInitEndpoint)","live.hms.video.sdk.models.HMSConfig"]},{"name":"data class HMSCreateWhiteBoardResponse(val id: String?, val owner: String?)","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/index.html","searchKeys":["HMSCreateWhiteBoardResponse","data class HMSCreateWhiteBoardResponse(val id: String?, val owner: String?)","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse"]},{"name":"data class HMSGetWhiteBoardResponse(val id: String?, val addr: String?, val token: String?, val owner: String?, val permissions: List?)","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/index.html","searchKeys":["HMSGetWhiteBoardResponse","data class HMSGetWhiteBoardResponse(val id: String?, val addr: String?, val token: String?, val owner: String?, val permissions: List?)","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse"]},{"name":"data class HMSHLSConfig(val meetingURLVariants: List? = null, val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","description":"live.hms.video.sdk.models.HMSHLSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/index.html","searchKeys":["HMSHLSConfig","data class HMSHLSConfig(val meetingURLVariants: List? = null, val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","live.hms.video.sdk.models.HMSHLSConfig"]},{"name":"data class HMSHLSMeetingURLVariant(val meetingUrl: String? = null, val metadata: String = \"\")","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/index.html","searchKeys":["HMSHLSMeetingURLVariant","data class HMSHLSMeetingURLVariant(val meetingUrl: String? = null, val metadata: String = \"\")","live.hms.video.sdk.models.HMSHLSMeetingURLVariant"]},{"name":"data class HMSHLSStreamingState(val running: Boolean, val variants: ArrayList?, val error: HMSException?, val state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSHLSStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/index.html","searchKeys":["HMSHLSStreamingState","data class HMSHLSStreamingState(val running: Boolean, val variants: ArrayList?, val error: HMSException?, val state: HMSStreamingState)","live.hms.video.sdk.models.HMSHLSStreamingState"]},{"name":"data class HMSHLSTimedMetadata(val payload: String, val duration: Long)","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/index.html","searchKeys":["HMSHLSTimedMetadata","data class HMSHLSTimedMetadata(val payload: String, val duration: Long)","live.hms.video.sdk.models.HMSHLSTimedMetadata"]},{"name":"data class HMSHLSVariant(val hlsStreamUrl: String?, val meetingUrl: String?, val metadata: String?, val startedAt: Long?, val updatedAt: Long?, state: BeamStreamingStates?, val playlistType: HMSHLSPlaylistType?)","description":"live.hms.video.sdk.models.HMSHLSVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/index.html","searchKeys":["HMSHLSVariant","data class HMSHLSVariant(val hlsStreamUrl: String?, val meetingUrl: String?, val metadata: String?, val startedAt: Long?, val updatedAt: Long?, state: BeamStreamingStates?, val playlistType: HMSHLSPlaylistType?)","live.hms.video.sdk.models.HMSHLSVariant"]},{"name":"data class HMSHlsRecordingConfig(val singleFilePerLayer: Boolean, val videoOnDemand: Boolean)","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/index.html","searchKeys":["HMSHlsRecordingConfig","data class HMSHlsRecordingConfig(val singleFilePerLayer: Boolean, val videoOnDemand: Boolean)","live.hms.video.sdk.models.HMSHlsRecordingConfig"]},{"name":"data class HMSLayoutOptions(val key1: String?, val key2: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/index.html","searchKeys":["HMSLayoutOptions","data class HMSLayoutOptions(val key1: String?, val key2: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions"]},{"name":"data class HMSLocalAudioStats(val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val packetLoss: Long?) : HMSStats.HMSLocalStats","description":"live.hms.video.connection.stats.HMSLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/index.html","searchKeys":["HMSLocalAudioStats","data class HMSLocalAudioStats(val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val packetLoss: Long?) : HMSStats.HMSLocalStats","live.hms.video.connection.stats.HMSLocalAudioStats"]},{"name":"data class HMSLocalVideoStats(val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val resolution: HMSVideoResolution?, val frameRate: Double?, val qualityLimitationReason: QualityLimitationReasons, val hmsLayer: HMSLayer?, val packetLoss: Long?) : HMSStats.HMSLocalStats","description":"live.hms.video.connection.stats.HMSLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/index.html","searchKeys":["HMSLocalVideoStats","data class HMSLocalVideoStats(val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val resolution: HMSVideoResolution?, val frameRate: Double?, val qualityLimitationReason: QualityLimitationReasons, val hmsLayer: HMSLayer?, val packetLoss: Long?) : HMSStats.HMSLocalStats","live.hms.video.connection.stats.HMSLocalVideoStats"]},{"name":"data class HMSLogSettings(val maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, val isLogStorageEnabled: Boolean = false, val level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","description":"live.hms.video.media.settings.HMSLogSettings","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/index.html","searchKeys":["HMSLogSettings","data class HMSLogSettings(val maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, val isLogStorageEnabled: Boolean = false, val level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","live.hms.video.media.settings.HMSLogSettings"]},{"name":"data class HMSMessage","description":"live.hms.video.sdk.models.HMSMessage","location":"lib/live.hms.video.sdk.models/-h-m-s-message/index.html","searchKeys":["HMSMessage","data class HMSMessage","live.hms.video.sdk.models.HMSMessage"]},{"name":"data class HMSMessageSendResponse(val timestamp: Long, val messageId: String? = \"\")","description":"live.hms.video.sdk.models.HMSMessageSendResponse","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/index.html","searchKeys":["HMSMessageSendResponse","data class HMSMessageSendResponse(val timestamp: Long, val messageId: String? = \"\")","live.hms.video.sdk.models.HMSMessageSendResponse"]},{"name":"data class HMSNetworkQuality(val downlinkQuality: Int)","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/index.html","searchKeys":["HMSNetworkQuality","data class HMSNetworkQuality(val downlinkQuality: Int)","live.hms.video.connection.stats.quality.HMSNetworkQuality"]},{"name":"data class HMSPollLeaderboardEntry(val position: Long?, val score: Long?, val totalResponses: Long?, val correctResponses: Long?, val duration: Long?, val peer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/index.html","searchKeys":["HMSPollLeaderboardEntry","data class HMSPollLeaderboardEntry(val position: Long?, val score: Long?, val totalResponses: Long?, val correctResponses: Long?, val duration: Long?, val peer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.HMSPollLeaderboardEntry"]},{"name":"data class HMSPollLeaderboardResponse(val pollId: String, val last: Boolean?, val leaderboard: List?, val totalUsers: Long?, val votedUsers: Long?, val correctUsers: Long?, val avgTime: Long?, val avgScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/index.html","searchKeys":["HMSPollLeaderboardResponse","data class HMSPollLeaderboardResponse(val pollId: String, val last: Boolean?, val leaderboard: List?, val totalUsers: Long?, val votedUsers: Long?, val correctUsers: Long?, val avgTime: Long?, val avgScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardResponse"]},{"name":"data class HMSPollLeaderboardSummary(val totalPeersCount: Int?, val respondedPeersCount: Int?, val respondedCorrectlyPeersCount: Int?, val averageTime: Long?, val averageScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/index.html","searchKeys":["HMSPollLeaderboardSummary","data class HMSPollLeaderboardSummary(val totalPeersCount: Int?, val respondedPeersCount: Int?, val respondedCorrectlyPeersCount: Int?, val averageTime: Long?, val averageScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardSummary"]},{"name":"data class HMSPollQuestion(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 0, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = null, val options: List? = null, val correctAnswer: HMSPollQuestionAnswer? = null, val negative: Boolean = false, val myResponses: MutableList = mutableListOf())","description":"live.hms.video.polls.models.question.HMSPollQuestion","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/index.html","searchKeys":["HMSPollQuestion","data class HMSPollQuestion(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 0, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = null, val options: List? = null, val correctAnswer: HMSPollQuestionAnswer? = null, val negative: Boolean = false, val myResponses: MutableList = mutableListOf())","live.hms.video.polls.models.question.HMSPollQuestion"]},{"name":"data class HMSPollQuestionAnswer(val hidden: Boolean = false, val option: Int? = null, val options: List? = null, val text: String = \"\", val caseSensitive: Boolean = false, val emptySpaceTrimmed: Boolean = false)","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/index.html","searchKeys":["HMSPollQuestionAnswer","data class HMSPollQuestionAnswer(val hidden: Boolean = false, val option: Int? = null, val options: List? = null, val text: String = \"\", val caseSensitive: Boolean = false, val emptySpaceTrimmed: Boolean = false)","live.hms.video.polls.models.answer.HMSPollQuestionAnswer"]},{"name":"data class HMSPollQuestionOption(val index: Int, val text: String? = \"\", val weight: Int? = null, val case: Boolean = false, val trim: Boolean = false, var voteCount: Long = 0)","description":"live.hms.video.polls.models.question.HMSPollQuestionOption","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/index.html","searchKeys":["HMSPollQuestionOption","data class HMSPollQuestionOption(val index: Int, val text: String? = \"\", val weight: Int? = null, val case: Boolean = false, val trim: Boolean = false, var voteCount: Long = 0)","live.hms.video.polls.models.question.HMSPollQuestionOption"]},{"name":"data class HMSPollQuestionResponse(val responseId: String, val index: Int, val questionType: HMSPollQuestionType, val skipped: Boolean, val selectedOption: Int?, val selectedOptions: List?, val text: String?, val answerChanged: Boolean)","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/index.html","searchKeys":["HMSPollQuestionResponse","data class HMSPollQuestionResponse(val responseId: String, val index: Int, val questionType: HMSPollQuestionType, val skipped: Boolean, val selectedOption: Int?, val selectedOptions: List?, val text: String?, val answerChanged: Boolean)","live.hms.video.polls.models.network.HMSPollQuestionResponse"]},{"name":"data class HMSPollResponsePeerInfo(val hash: String, val peerid: String?, val userid: String?, val username: String?)","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/index.html","searchKeys":["HMSPollResponsePeerInfo","data class HMSPollResponsePeerInfo(val hash: String, val peerid: String?, val userid: String?, val username: String?)","live.hms.video.polls.models.network.HMSPollResponsePeerInfo"]},{"name":"data class HMSRTCStats(val bytesSent: Long, val bytesReceived: Long, val packetsReceived: Long, val packetsLost: Long, val bitrateSent: Double, val bitrateReceived: Double, val roundTripTime: Double)","description":"live.hms.video.connection.stats.HMSRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/index.html","searchKeys":["HMSRTCStats","data class HMSRTCStats(val bytesSent: Long, val bytesReceived: Long, val packetsReceived: Long, val packetsLost: Long, val bitrateSent: Double, val bitrateReceived: Double, val roundTripTime: Double)","live.hms.video.connection.stats.HMSRTCStats"]},{"name":"data class HMSRTCStatsReport(val combined: HMSRTCStats, val audio: HMSRTCStats, val video: HMSRTCStats)","description":"live.hms.video.connection.stats.HMSRTCStatsReport","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/index.html","searchKeys":["HMSRTCStatsReport","data class HMSRTCStatsReport(val combined: HMSRTCStats, val audio: HMSRTCStats, val video: HMSRTCStats)","live.hms.video.connection.stats.HMSRTCStatsReport"]},{"name":"data class HMSRecordingConfig(val meetingUrl: String? = null, val rtmpUrls: List, val record: Boolean, val resolution: HMSRtmpVideoResolution? = null)","description":"live.hms.video.sdk.models.HMSRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/index.html","searchKeys":["HMSRecordingConfig","data class HMSRecordingConfig(val meetingUrl: String? = null, val rtmpUrls: List, val record: Boolean, val resolution: HMSRtmpVideoResolution? = null)","live.hms.video.sdk.models.HMSRecordingConfig"]},{"name":"data class HMSRemoteAudioStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?) : HMSStats.HMSRemoteStats","description":"live.hms.video.connection.stats.HMSRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/index.html","searchKeys":["HMSRemoteAudioStats","data class HMSRemoteAudioStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?) : HMSStats.HMSRemoteStats","live.hms.video.connection.stats.HMSRemoteAudioStats"]},{"name":"data class HMSRemoteVideoStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?, val resolution: HMSVideoResolution?, val frameRate: Double?) : HMSStats.HMSRemoteStats","description":"live.hms.video.connection.stats.HMSRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/index.html","searchKeys":["HMSRemoteVideoStats","data class HMSRemoteVideoStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?, val resolution: HMSVideoResolution?, val frameRate: Double?) : HMSStats.HMSRemoteStats","live.hms.video.connection.stats.HMSRemoteVideoStats"]},{"name":"data class HMSRemovedFromRoom(val reason: String, val peerWhoRemoved: HMSPeer?, val roomWasEnded: Boolean)","description":"live.hms.video.sdk.models.HMSRemovedFromRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/index.html","searchKeys":["HMSRemovedFromRoom","data class HMSRemovedFromRoom(val reason: String, val peerWhoRemoved: HMSPeer?, val roomWasEnded: Boolean)","live.hms.video.sdk.models.HMSRemovedFromRoom"]},{"name":"data class HMSRole","description":"live.hms.video.sdk.models.role.HMSRole","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/index.html","searchKeys":["HMSRole","data class HMSRole","live.hms.video.sdk.models.role.HMSRole"]},{"name":"data class HMSRoleChangeRequest","description":"live.hms.video.sdk.models.HMSRoleChangeRequest","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/index.html","searchKeys":["HMSRoleChangeRequest","data class HMSRoleChangeRequest","live.hms.video.sdk.models.HMSRoleChangeRequest"]},{"name":"data class HMSRoom","description":"live.hms.video.sdk.models.HMSRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-room/index.html","searchKeys":["HMSRoom","data class HMSRoom","live.hms.video.sdk.models.HMSRoom"]},{"name":"data class HMSRoomLayout(val data: List?, val last: String?)","description":"live.hms.video.signal.init.HMSRoomLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/index.html","searchKeys":["HMSRoomLayout","data class HMSRoomLayout(val data: List?, val last: String?)","live.hms.video.signal.init.HMSRoomLayout"]},{"name":"data class HMSRoomLayoutData(val appId: String?, val id: String?, val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, val role: String?, val roleId: String?, val templateId: String?, val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, val themes: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/index.html","searchKeys":["HMSRoomLayoutData","data class HMSRoomLayoutData(val appId: String?, val id: String?, val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, val role: String?, val roleId: String?, val templateId: String?, val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, val themes: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData"]},{"name":"data class HMSRoomTheme(val default: Boolean?, val name: String?, val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/index.html","searchKeys":["HMSRoomTheme","data class HMSRoomTheme(val default: Boolean?, val name: String?, val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme"]},{"name":"data class HMSRtmpStreamingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, var state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/index.html","searchKeys":["HMSRtmpStreamingState","data class HMSRtmpStreamingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, var state: HMSStreamingState)","live.hms.video.sdk.models.HMSRtmpStreamingState"]},{"name":"data class HMSRtmpVideoResolution(val width: Int, val height: Int)","description":"live.hms.video.media.settings.HMSRtmpVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/index.html","searchKeys":["HMSRtmpVideoResolution","data class HMSRtmpVideoResolution(val width: Int, val height: Int)","live.hms.video.media.settings.HMSRtmpVideoResolution"]},{"name":"data class HMSServerRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSServerRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/index.html","searchKeys":["HMSServerRecordingState","data class HMSServerRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val state: HMSRecordingState)","live.hms.video.sdk.models.HMSServerRecordingState"]},{"name":"data class HMSSimulcastLayerDefinition(val resolution: HMSVideoResolution, val layer: HMSLayer)","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/index.html","searchKeys":["HMSSimulcastLayerDefinition","data class HMSSimulcastLayerDefinition(val resolution: HMSVideoResolution, val layer: HMSLayer)","live.hms.video.media.settings.HMSSimulcastLayerDefinition"]},{"name":"data class HMSSpeaker","description":"live.hms.video.sdk.models.HMSSpeaker","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/index.html","searchKeys":["HMSSpeaker","data class HMSSpeaker","live.hms.video.sdk.models.HMSSpeaker"]},{"name":"data class HMSVideoResolution(var width: Int, var height: Int)","description":"live.hms.video.media.settings.HMSVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/index.html","searchKeys":["HMSVideoResolution","data class HMSVideoResolution(var width: Int, var height: Int)","live.hms.video.media.settings.HMSVideoResolution"]},{"name":"data class HMSVirtualBackground(val backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","data class HMSVirtualBackground(val backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground"]},{"name":"data class HMSVirtualBackground(val backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","data class HMSVirtualBackground(val backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground"]},{"name":"data class HMSWhiteBoardPermission(var admin: Boolean, var read: Boolean, var write: Boolean)","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/index.html","searchKeys":["HMSWhiteBoardPermission","data class HMSWhiteBoardPermission(var admin: Boolean, var read: Boolean, var write: Boolean)","live.hms.video.sdk.models.role.HMSWhiteBoardPermission"]},{"name":"data class HMSWhiteboard(val id: String, val title: String? = null, val owner: HMSPeer? = null, val isOwner: Boolean, val url: String, val state: State = State.Stopped)","description":"live.hms.video.whiteboard.HMSWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/index.html","searchKeys":["HMSWhiteboard","data class HMSWhiteboard(val id: String, val title: String? = null, val owner: HMSPeer? = null, val isOwner: Boolean, val url: String, val state: State = State.Stopped)","live.hms.video.whiteboard.HMSWhiteboard"]},{"name":"data class HMSWhiteboardPermissions(val admin: List, val reader: List, val writer: List)","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/index.html","searchKeys":["HMSWhiteboardPermissions","data class HMSWhiteboardPermissions(val admin: List, val reader: List, val writer: List)","live.hms.video.whiteboard.HMSWhiteboardPermissions"]},{"name":"data class Hls(val enabled: Boolean, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Hls","location":"lib/live.hms.video.sdk.peerlist.models/-hls/index.html","searchKeys":["Hls","data class Hls(val enabled: Boolean, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Hls"]},{"name":"data class HmsHlsRecordingState(val running: Boolean?, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val error: HMSException?, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HmsHlsRecordingState","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/index.html","searchKeys":["HmsHlsRecordingState","data class HmsHlsRecordingState(val running: Boolean?, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val error: HMSException?, val state: HMSRecordingState)","live.hms.video.sdk.models.HmsHlsRecordingState"]},{"name":"data class HmsPoll","description":"live.hms.video.polls.models.HmsPoll","location":"lib/live.hms.video.polls.models/-hms-poll/index.html","searchKeys":["HmsPoll","data class HmsPoll","live.hms.video.polls.models.HmsPoll"]},{"name":"data class HmsPollAnswer(val questionId: Int, val questionType: HMSPollQuestionType, val skipped: Boolean = false, val selectedOption: Int = 0, val selectedOptions: List? = null, val answerText: String = \"\", val update: Boolean = false, val durationMillis: Long? = null)","description":"live.hms.video.polls.models.answer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/index.html","searchKeys":["HmsPollAnswer","data class HmsPollAnswer(val questionId: Int, val questionType: HMSPollQuestionType, val skipped: Boolean = false, val selectedOption: Int = 0, val selectedOptions: List? = null, val answerText: String = \"\", val update: Boolean = false, val durationMillis: Long? = null)","live.hms.video.polls.models.answer.HmsPollAnswer"]},{"name":"data class HmsPollCreationParams(val pollId: String? = null, val title: String, val duration: Long = 0, val anonymous: Boolean = false, val visibility: Boolean = true, val locked: Boolean = false, val mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, val vote: List? = null, val responses: List? = null, val category: HmsPollCategory)","description":"live.hms.video.polls.models.HmsPollCreationParams","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/index.html","searchKeys":["HmsPollCreationParams","data class HmsPollCreationParams(val pollId: String? = null, val title: String, val duration: Long = 0, val anonymous: Boolean = false, val visibility: Boolean = true, val locked: Boolean = false, val mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, val vote: List? = null, val responses: List? = null, val category: HmsPollCategory)","live.hms.video.polls.models.HmsPollCreationParams"]},{"name":"data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/index.html","searchKeys":["HmsPollQuestionContainer","data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","live.hms.video.polls.models.question.HmsPollQuestionContainer"]},{"name":"data class HmsPollQuestionCreation(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 1, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = 1, val negative: Boolean = false)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/index.html","searchKeys":["HmsPollQuestionCreation","data class HmsPollQuestionCreation(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 1, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = 1, val negative: Boolean = false)","live.hms.video.polls.models.question.HmsPollQuestionCreation"]},{"name":"data class HmsPollQuestionSettingContainer(val questionContainer: HmsPollQuestionCreation, val options: List?, val correctAnswer: HMSPollQuestionAnswer?)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/index.html","searchKeys":["HmsPollQuestionSettingContainer","data class HmsPollQuestionSettingContainer(val questionContainer: HmsPollQuestionCreation, val options: List?, val correctAnswer: HMSPollQuestionAnswer?)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer"]},{"name":"data class HmsTranscript(val start: Int, val end: Int, val transcript: String, val peerId: String, val isFinal: Boolean)","description":"live.hms.video.sdk.transcripts.HmsTranscript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/index.html","searchKeys":["HmsTranscript","data class HmsTranscript(val start: Int, val end: Int, val transcript: String, val peerId: String, val isFinal: Boolean)","live.hms.video.sdk.transcripts.HmsTranscript"]},{"name":"data class HmsTranscripts(val transcripts: List)","description":"live.hms.video.sdk.transcripts.HmsTranscripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/index.html","searchKeys":["HmsTranscripts","data class HmsTranscripts(val transcripts: List)","live.hms.video.sdk.transcripts.HmsTranscripts"]},{"name":"data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html","searchKeys":["ImageCaptureModel","data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable","live.hms.video.media.capturers.camera.utils.ImageCaptureModel"]},{"name":"data class Item(val bitrate: Int, val frameRate: Int)","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/index.html","searchKeys":["Item","data class Item(val bitrate: Int, val frameRate: Int)","live.hms.video.media.settings.HMSSimulcastSettings.Item"]},{"name":"data class JoinForm(val goLiveBtnLabel: String?, val joinBtnLabel: String?, val joinBtnType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/index.html","searchKeys":["JoinForm","data class JoinForm(val goLiveBtnLabel: String?, val joinBtnLabel: String?, val joinBtnType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm"]},{"name":"data class LayerParams(val rid: String?, val scaleResolutionDownBy: Float?, val maxBitrate: Int?, val maxFramerate: Int?)","description":"live.hms.video.sdk.models.role.LayerParams","location":"lib/live.hms.video.sdk.models.role/-layer-params/index.html","searchKeys":["LayerParams","data class LayerParams(val rid: String?, val scaleResolutionDownBy: Float?, val maxBitrate: Int?, val maxFramerate: Int?)","live.hms.video.sdk.models.role.LayerParams"]},{"name":"data class LayoutRequestOptions(val endpoint: String?)","description":"live.hms.video.signal.init.LayoutRequestOptions","location":"lib/live.hms.video.signal.init/-layout-request-options/index.html","searchKeys":["LayoutRequestOptions","data class LayoutRequestOptions(val endpoint: String?)","live.hms.video.signal.init.LayoutRequestOptions"]},{"name":"data class LeaderboardQuestion(val questionIndex: Long?, val position: Long?, val duration: Long?, val totalResponse: Long?, val correctResponses: Long?, val score: Float?, val pollPeer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.LeaderboardQuestion","location":"lib/live.hms.video.polls.network/-leaderboard-question/index.html","searchKeys":["LeaderboardQuestion","data class LeaderboardQuestion(val questionIndex: Long?, val position: Long?, val duration: Long?, val totalResponse: Long?, val correctResponses: Long?, val score: Float?, val pollPeer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.LeaderboardQuestion"]},{"name":"data class LocalAudio : Track.LocalTrack","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/index.html","searchKeys":["LocalAudio","data class LocalAudio : Track.LocalTrack","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio"]},{"name":"data class LocalVideo : Track.LocalTrack","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/index.html","searchKeys":["LocalVideo","data class LocalVideo : Track.LocalTrack","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo"]},{"name":"data class Logo(val url: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/index.html","searchKeys":["Logo","data class Logo(val url: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo"]},{"name":"data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap)","description":"live.hms.video.signal.init.NetworkHealth","location":"lib/live.hms.video.signal.init/-network-health/index.html","searchKeys":["NetworkHealth","data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap)","live.hms.video.signal.init.NetworkHealth"]},{"name":"data class NoiseCancellationElement(val enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/index.html","searchKeys":["NoiseCancellationElement","data class NoiseCancellationElement(val enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement"]},{"name":"data class NoiseCancellationElement(val enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/index.html","searchKeys":["NoiseCancellationElement","data class NoiseCancellationElement(val enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement"]},{"name":"data class NotAvailable(val reason: String) : AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/index.html","searchKeys":["NotAvailable","data class NotAvailable(val reason: String) : AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable"]},{"name":"data class OnStageExp(val bringToStageLabel: String?, val offStageRoles: List?, val onStageRole: String?, val removeFromStageLabel: String?, val skipPreviewForRoleChange: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/index.html","searchKeys":["OnStageExp","data class OnStageExp(val bringToStageLabel: String?, val offStageRoles: List?, val onStageRole: String?, val removeFromStageLabel: String?, val skipPreviewForRoleChange: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp"]},{"name":"data class OnTranscriptionError(val code: Int?, val message: String?)","description":"live.hms.video.sdk.models.OnTranscriptionError","location":"lib/live.hms.video.sdk.models/-on-transcription-error/index.html","searchKeys":["OnTranscriptionError","data class OnTranscriptionError(val code: Int?, val message: String?)","live.hms.video.sdk.models.OnTranscriptionError"]},{"name":"data class PacketLossTracks(val ssrc: Long?, val packetLoss: Int?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/index.html","searchKeys":["PacketLossTracks","data class PacketLossTracks(val ssrc: Long?, val packetLoss: Int?)","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks"]},{"name":"data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats","description":"live.hms.video.connection.degredation.Peer","location":"lib/live.hms.video.connection.degredation/-peer/index.html","searchKeys":["Peer","data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats","live.hms.video.connection.degredation.Peer"]},{"name":"data class PeerListIteratorOptions(val byGroupName: String? = null, val byRoleName: String? = null, val byPeerIds: ArrayList? = null, val limit: Int = 10)","description":"live.hms.video.sdk.models.PeerListIteratorOptions","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/index.html","searchKeys":["PeerListIteratorOptions","data class PeerListIteratorOptions(val byGroupName: String? = null, val byRoleName: String? = null, val byPeerIds: ArrayList? = null, val limit: Int = 10)","live.hms.video.sdk.models.PeerListIteratorOptions"]},{"name":"data class PermissionsParams(val endRoom: Boolean = false, val removeOthers: Boolean = false, val unmute: Boolean = false, val mute: Boolean = false, val changeRole: Boolean = false, val browserRecording: Boolean = false, val rtmpStreaming: Boolean = false, val hlsStreaming: Boolean = false, val pollRead: Boolean = false, val pollWrite: Boolean = false, val whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","description":"live.hms.video.sdk.models.role.PermissionsParams","location":"lib/live.hms.video.sdk.models.role/-permissions-params/index.html","searchKeys":["PermissionsParams","data class PermissionsParams(val endRoom: Boolean = false, val removeOthers: Boolean = false, val unmute: Boolean = false, val mute: Boolean = false, val changeRole: Boolean = false, val browserRecording: Boolean = false, val rtmpStreaming: Boolean = false, val hlsStreaming: Boolean = false, val pollRead: Boolean = false, val pollWrite: Boolean = false, val whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","live.hms.video.sdk.models.role.PermissionsParams"]},{"name":"data class PollAnswerItem(val questionIndex: Int, val correct: Boolean, val error: HMSException?)","description":"live.hms.video.polls.models.answer.PollAnswerItem","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/index.html","searchKeys":["PollAnswerItem","data class PollAnswerItem(val questionIndex: Int, val correct: Boolean, val error: HMSException?)","live.hms.video.polls.models.answer.PollAnswerItem"]},{"name":"data class PollAnswerResponse(val pollId: String, val result: List, val version: String)","description":"live.hms.video.polls.models.answer.PollAnswerResponse","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/index.html","searchKeys":["PollAnswerResponse","data class PollAnswerResponse(val pollId: String, val result: List, val version: String)","live.hms.video.polls.models.answer.PollAnswerResponse"]},{"name":"data class PollCreateResponse(val pollId: String, val version: String)","description":"live.hms.video.polls.network.PollCreateResponse","location":"lib/live.hms.video.polls.network/-poll-create-response/index.html","searchKeys":["PollCreateResponse","data class PollCreateResponse(val pollId: String, val version: String)","live.hms.video.polls.network.PollCreateResponse"]},{"name":"data class PollGetResponsesReply(val pollId: String, val version: String, val isLast: Boolean, val responses: List)","description":"live.hms.video.polls.network.PollGetResponsesReply","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/index.html","searchKeys":["PollGetResponsesReply","data class PollGetResponsesReply(val pollId: String, val version: String, val isLast: Boolean, val responses: List)","live.hms.video.polls.network.PollGetResponsesReply"]},{"name":"data class PollLeaderboardResponse(val entries: List?, val summary: HMSPollLeaderboardSummary?, val hasNext: Boolean?)","description":"live.hms.video.polls.network.PollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/index.html","searchKeys":["PollLeaderboardResponse","data class PollLeaderboardResponse(val entries: List?, val summary: HMSPollLeaderboardSummary?, val hasNext: Boolean?)","live.hms.video.polls.network.PollLeaderboardResponse"]},{"name":"data class PollQuestionGetResponse(val last: Boolean, val pollId: String, val version: String, val questions: List)","description":"live.hms.video.polls.network.PollQuestionGetResponse","location":"lib/live.hms.video.polls.network/-poll-question-get-response/index.html","searchKeys":["PollQuestionGetResponse","data class PollQuestionGetResponse(val last: Boolean, val pollId: String, val version: String, val questions: List)","live.hms.video.polls.network.PollQuestionGetResponse"]},{"name":"data class PollResultsDisplay(val totalResponses: Long? = null, val votingUsers: Long? = null, val totalDistinctUsers: Long? = null, val questions: List)","description":"live.hms.video.polls.network.PollResultsDisplay","location":"lib/live.hms.video.polls.network/-poll-results-display/index.html","searchKeys":["PollResultsDisplay","data class PollResultsDisplay(val totalResponses: Long? = null, val votingUsers: Long? = null, val totalDistinctUsers: Long? = null, val questions: List)","live.hms.video.polls.network.PollResultsDisplay"]},{"name":"data class PollResultsItems(val questionIndex: Long, val correct: Long, val type: HMSPollQuestionType, val skipped: Long, val total: Long, val error: HMSException?)","description":"live.hms.video.polls.network.PollResultsItems","location":"lib/live.hms.video.polls.network/-poll-results-items/index.html","searchKeys":["PollResultsItems","data class PollResultsItems(val questionIndex: Long, val correct: Long, val type: HMSPollQuestionType, val skipped: Long, val total: Long, val error: HMSException?)","live.hms.video.polls.network.PollResultsItems"]},{"name":"data class PollResultsResponse(val pollId: String, val totalResponses: Long, val votingUsers: Long, val totalDistinctUsers: Long, val question: List)","description":"live.hms.video.polls.network.PollResultsResponse","location":"lib/live.hms.video.polls.network/-poll-results-response/index.html","searchKeys":["PollResultsResponse","data class PollResultsResponse(val pollId: String, val totalResponses: Long, val votingUsers: Long, val totalDistinctUsers: Long, val question: List)","live.hms.video.polls.network.PollResultsResponse"]},{"name":"data class PollStartRequest(val pollId: String, val version: String = \"1.0\")","description":"live.hms.video.polls.network.PollStartRequest","location":"lib/live.hms.video.polls.network/-poll-start-request/index.html","searchKeys":["PollStartRequest","data class PollStartRequest(val pollId: String, val version: String = \"1.0\")","live.hms.video.polls.network.PollStartRequest"]},{"name":"data class PollStatsQuestions(val index: Int, val questionType: HMSPollQuestionType, val options: List?, val correct: Long?, val skipped: Long, val attemptedTimes: Int)","description":"live.hms.video.polls.models.PollStatsQuestions","location":"lib/live.hms.video.polls.models/-poll-stats-questions/index.html","searchKeys":["PollStatsQuestions","data class PollStatsQuestions(val index: Int, val questionType: HMSPollQuestionType, val options: List?, val correct: Long?, val skipped: Long, val attemptedTimes: Int)","live.hms.video.polls.models.PollStatsQuestions"]},{"name":"data class PreferLayer(val trackId: String, val layer: String) : HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.PreferLayer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/index.html","searchKeys":["PreferLayer","data class PreferLayer(val trackId: String, val layer: String) : HMSDataChannelRequestParams","live.hms.video.media.streams.models.PreferLayer"]},{"name":"data class PreferLayerAudio(val trackId: String, val isSubscribed: Boolean) : HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.PreferLayerAudio","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/index.html","searchKeys":["PreferLayerAudio","data class PreferLayerAudio(val trackId: String, val isSubscribed: Boolean) : HMSDataChannelRequestParams","live.hms.video.media.streams.models.PreferLayerAudio"]},{"name":"data class PreferLayerResponseInfo(val trackId: String)","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/index.html","searchKeys":["PreferLayerResponseInfo","data class PreferLayerResponseInfo(val trackId: String)","live.hms.video.media.streams.models.PreferLayerResponseInfo"]},{"name":"data class PreferStateResponse(val info: PreferLayerResponseInfo) : HMSDataChannelResponse","description":"live.hms.video.media.streams.models.PreferStateResponse","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/index.html","searchKeys":["PreferStateResponse","data class PreferStateResponse(val info: PreferLayerResponseInfo) : HMSDataChannelResponse","live.hms.video.media.streams.models.PreferStateResponse"]},{"name":"data class PreferStateResponseError(val code: Int?, val message: String?, val data: String?) : HMSDataChannelResponse","description":"live.hms.video.media.streams.models.PreferStateResponseError","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/index.html","searchKeys":["PreferStateResponseError","data class PreferStateResponseError(val code: Int?, val message: String?, val data: String?) : HMSDataChannelResponse","live.hms.video.media.streams.models.PreferStateResponseError"]},{"name":"data class Preview(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, val skipPreview: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/index.html","searchKeys":["Preview","data class Preview(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, val skipPreview: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview"]},{"name":"data class PreviewHeader(val subTitle: String?, val title: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/index.html","searchKeys":["PreviewHeader","data class PreviewHeader(val subTitle: String?, val title: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader"]},{"name":"data class PublishAnalyticPayload(val sequenceNumber: Int, val maxWindowSecond: Int, val joined_at: Long, val video: List = emptyList(), val audio: List, val batteryPercentage: Int)","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/index.html","searchKeys":["PublishAnalyticPayload","data class PublishAnalyticPayload(val sequenceNumber: Int, val maxWindowSecond: Int, val joined_at: Long, val video: List = emptyList(), val audio: List, val batteryPercentage: Int)","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload"]},{"name":"data class PublishConnection(var bytesSent: BigInteger?, var availableOutgoingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsSent: BigInteger?) : ConnectionInfo","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/index.html","searchKeys":["PublishConnection","data class PublishConnection(var bytesSent: BigInteger?, var availableOutgoingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsSent: BigInteger?) : ConnectionInfo","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection"]},{"name":"data class PublishConnection(var bytesSent: Long = 0, var availableOutgoingBitrates: MutableList = mutableListOf(), var packetsSent: Long = 0, var packetLoss: Long = 0)","description":"live.hms.video.sdk.PublishConnection","location":"lib/live.hms.video.sdk/-publish-connection/index.html","searchKeys":["PublishConnection","data class PublishConnection(var bytesSent: Long = 0, var availableOutgoingBitrates: MutableList = mutableListOf(), var packetsSent: Long = 0, var packetLoss: Long = 0)","live.hms.video.sdk.PublishConnection"]},{"name":"data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList = arrayListOf(), val simulcast: Simulcast?)","description":"live.hms.video.sdk.models.role.PublishParams","location":"lib/live.hms.video.sdk.models.role/-publish-params/index.html","searchKeys":["PublishParams","data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList = arrayListOf(), val simulcast: Simulcast?)","live.hms.video.sdk.models.role.PublishParams"]},{"name":"data class QualityLimitation(val bandwidthMs: Float, val cpuMs: Float)","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/index.html","searchKeys":["QualityLimitation","data class QualityLimitation(val bandwidthMs: Float, val cpuMs: Float)","live.hms.video.connection.stats.clientside.model.QualityLimitation"]},{"name":"data class QualityLimitationReasons(stringReason: String? = null, val bandWidth: Double? = null, val cpu: Double? = null, val none: Double? = null, val other: Double? = null, val qualityLimitationResolutionChanges: Long? = null)","description":"live.hms.video.connection.degredation.QualityLimitationReasons","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/index.html","searchKeys":["QualityLimitationReasons","data class QualityLimitationReasons(stringReason: String? = null, val bandWidth: Double? = null, val cpu: Double? = null, val none: Double? = null, val other: Double? = null, val qualityLimitationResolutionChanges: Long? = null)","live.hms.video.connection.degredation.QualityLimitationReasons"]},{"name":"data class QuestionContainer(val questions: List? = null, val error: Throwable? = null)","description":"live.hms.video.polls.network.QuestionContainer","location":"lib/live.hms.video.polls.network/-question-container/index.html","searchKeys":["QuestionContainer","data class QuestionContainer(val questions: List? = null, val error: Throwable? = null)","live.hms.video.polls.network.QuestionContainer"]},{"name":"data class RangeLimits(val low: Long, val high: Long)","description":"live.hms.video.signal.init.RangeLimits","location":"lib/live.hms.video.signal.init/-range-limits/index.html","searchKeys":["RangeLimits","data class RangeLimits(val low: Long, val high: Long)","live.hms.video.signal.init.RangeLimits"]},{"name":"data class RealTimeControls(val canDisableChat: Boolean, val canBlockUser: Boolean, val canHideMessage: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/index.html","searchKeys":["RealTimeControls","data class RealTimeControls(val canDisableChat: Boolean, val canBlockUser: Boolean, val canHideMessage: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls"]},{"name":"data class Recording(val sfu: Sfu?, val browser: Browser?, val hls: Hls?)","description":"live.hms.video.sdk.peerlist.models.Recording","location":"lib/live.hms.video.sdk.peerlist.models/-recording/index.html","searchKeys":["Recording","data class Recording(val sfu: Sfu?, val browser: Browser?, val hls: Hls?)","live.hms.video.sdk.peerlist.models.Recording"]},{"name":"data class Result(val mode: TranscriptionsMode?)","description":"live.hms.video.sdk.models.Result","location":"lib/live.hms.video.sdk.models/-result/index.html","searchKeys":["Result","data class Result(val mode: TranscriptionsMode?)","live.hms.video.sdk.models.Result"]},{"name":"data class RpcRequestWrapper(val method: String, val params: HMSDataChannelRequestParams, val id: String = IdHelper.makeCallSignalId(), val jsonRpc: String = \"2.0\")","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/index.html","searchKeys":["RpcRequestWrapper","data class RpcRequestWrapper(val method: String, val params: HMSDataChannelRequestParams, val id: String = IdHelper.makeCallSignalId(), val jsonRpc: String = \"2.0\")","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper"]},{"name":"data class Screens(val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/index.html","searchKeys":["Screens","data class Screens(val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens"]},{"name":"data class ServerConfiguration(val enabledFlags: List?, val networkHealth: NetworkHealth?, val publishStats: Stats?, val subscribeStats: Stats?, val vb: VB?)","description":"live.hms.video.signal.init.ServerConfiguration","location":"lib/live.hms.video.signal.init/-server-configuration/index.html","searchKeys":["ServerConfiguration","data class ServerConfiguration(val enabledFlags: List?, val networkHealth: NetworkHealth?, val publishStats: Stats?, val subscribeStats: Stats?, val vb: VB?)","live.hms.video.signal.init.ServerConfiguration"]},{"name":"data class SetQuestionsResponse(val pollId: String, val totalQuestions: Int, val version: String)","description":"live.hms.video.polls.network.SetQuestionsResponse","location":"lib/live.hms.video.polls.network/-set-questions-response/index.html","searchKeys":["SetQuestionsResponse","data class SetQuestionsResponse(val pollId: String, val totalQuestions: Int, val version: String)","live.hms.video.polls.network.SetQuestionsResponse"]},{"name":"data class Sfu(val enabled: Boolean, val startedAt: Long?, val initialisedAt: Long?, val updatedAt: Long?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Sfu","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/index.html","searchKeys":["Sfu","data class Sfu(val enabled: Boolean, val startedAt: Long?, val initialisedAt: Long?, val updatedAt: Long?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Sfu"]},{"name":"data class ShortCodeInput(val token: String, val userId: String?)","description":"live.hms.video.signal.init.ShortCodeInput","location":"lib/live.hms.video.signal.init/-short-code-input/index.html","searchKeys":["ShortCodeInput","data class ShortCodeInput(val token: String, val userId: String?)","live.hms.video.signal.init.ShortCodeInput"]},{"name":"data class Simulcast(val video: VideoSimulcastLayersParams?, val screen: VideoSimulcastLayersParams?)","description":"live.hms.video.sdk.models.role.Simulcast","location":"lib/live.hms.video.sdk.models.role/-simulcast/index.html","searchKeys":["Simulcast","data class Simulcast(val video: VideoSimulcastLayersParams?, val screen: VideoSimulcastLayersParams?)","live.hms.video.sdk.models.role.Simulcast"]},{"name":"data class SingleResponse(val peer: HMSPollResponsePeerInfo, val finalAnswer: Boolean, val response: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.network.SingleResponse","location":"lib/live.hms.video.polls.models.network/-single-response/index.html","searchKeys":["SingleResponse","data class SingleResponse(val peer: HMSPollResponsePeerInfo, val finalAnswer: Boolean, val response: HMSPollQuestionResponse)","live.hms.video.polls.models.network.SingleResponse"]},{"name":"data class Size(val width: Int, val height: Int)","description":"live.hms.video.connection.stats.clientside.model.Size","location":"lib/live.hms.video.connection.stats.clientside.model/-size/index.html","searchKeys":["Size","data class Size(val width: Int, val height: Int)","live.hms.video.connection.stats.clientside.model.Size"]},{"name":"data class Start(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/index.html","searchKeys":["Start","data class Start(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start"]},{"name":"data class Stats(val maxSampleWindowSize: Float?, val maxSamplePushInterval: Float?)","description":"live.hms.video.signal.init.Stats","location":"lib/live.hms.video.signal.init/-stats/index.html","searchKeys":["Stats","data class Stats(val maxSampleWindowSize: Float?, val maxSamplePushInterval: Float?)","live.hms.video.signal.init.Stats"]},{"name":"data class StatsBundle(val packetLoss: Long, val allStats: Map, val totalPackets: Long, val packetLossTracks: MutableMap)","description":"live.hms.video.connection.degredation.StatsBundle","location":"lib/live.hms.video.connection.degredation/-stats-bundle/index.html","searchKeys":["StatsBundle","data class StatsBundle(val packetLoss: Long, val allStats: Map, val totalPackets: Long, val packetLossTracks: MutableMap)","live.hms.video.connection.degredation.StatsBundle"]},{"name":"data class Stop(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/index.html","searchKeys":["Stop","data class Stop(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop"]},{"name":"data class SubscribeConnection(var bytesReceived: BigInteger?, var availableIncomingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsReceived: BigInteger?) : ConnectionInfo","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/index.html","searchKeys":["SubscribeConnection","data class SubscribeConnection(var bytesReceived: BigInteger?, var availableIncomingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsReceived: BigInteger?) : ConnectionInfo","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection"]},{"name":"data class SubscribeConnection(var bytesReceived: Long = 0, var availableIncomingBitrates: MutableList = mutableListOf(), var packetsReceived: Long = 0, var packetLoss: Long = 0)","description":"live.hms.video.sdk.SubscribeConnection","location":"lib/live.hms.video.sdk/-subscribe-connection/index.html","searchKeys":["SubscribeConnection","data class SubscribeConnection(var bytesReceived: Long = 0, var availableIncomingBitrates: MutableList = mutableListOf(), var packetsReceived: Long = 0, var packetLoss: Long = 0)","live.hms.video.sdk.SubscribeConnection"]},{"name":"data class SubscribeDegradationParams(val packetLossThreshold: Long, val degradeGracePeriodSeconds: Long, val recoverGracePeriodSeconds: Long)","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/index.html","searchKeys":["SubscribeDegradationParams","data class SubscribeDegradationParams(val packetLossThreshold: Long, val degradeGracePeriodSeconds: Long, val recoverGracePeriodSeconds: Long)","live.hms.video.sdk.models.role.SubscribeDegradationParams"]},{"name":"data class SubscribeParams(val subscribeTo: ArrayList?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)","description":"live.hms.video.sdk.models.role.SubscribeParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/index.html","searchKeys":["SubscribeParams","data class SubscribeParams(val subscribeTo: ArrayList?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)","live.hms.video.sdk.models.role.SubscribeParams"]},{"name":"data class TokenRequest(val roomCode: String, val userId: String? = null)","description":"live.hms.video.signal.init.TokenRequest","location":"lib/live.hms.video.signal.init/-token-request/index.html","searchKeys":["TokenRequest","data class TokenRequest(val roomCode: String, val userId: String? = null)","live.hms.video.signal.init.TokenRequest"]},{"name":"data class TokenRequestOptions(val endpoint: String?)","description":"live.hms.video.signal.init.TokenRequestOptions","location":"lib/live.hms.video.signal.init/-token-request-options/index.html","searchKeys":["TokenRequestOptions","data class TokenRequestOptions(val endpoint: String?)","live.hms.video.signal.init.TokenRequestOptions"]},{"name":"data class TokenResult(val token: String?, val expiresAt: String?)","description":"live.hms.video.signal.init.TokenResult","location":"lib/live.hms.video.signal.init/-token-result/index.html","searchKeys":["TokenResult","data class TokenResult(val token: String?, val expiresAt: String?)","live.hms.video.signal.init.TokenResult"]},{"name":"data class TranscriptionStartResponse(val result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStartResponse","location":"lib/live.hms.video.sdk.models/-transcription-start-response/index.html","searchKeys":["TranscriptionStartResponse","data class TranscriptionStartResponse(val result: Result?)","live.hms.video.sdk.models.TranscriptionStartResponse"]},{"name":"data class TranscriptionStopResponse(val result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStopResponse","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/index.html","searchKeys":["TranscriptionStopResponse","data class TranscriptionStopResponse(val result: Result?)","live.hms.video.sdk.models.TranscriptionStopResponse"]},{"name":"data class TypoGraphy(val fontFamily: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/index.html","searchKeys":["TypoGraphy","data class TypoGraphy(val fontFamily: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy"]},{"name":"data class VB(val effectsKey: String?)","description":"live.hms.video.signal.init.VB","location":"lib/live.hms.video.signal.init/-v-b/index.html","searchKeys":["VB","data class VB(val effectsKey: String?)","live.hms.video.signal.init.VB"]},{"name":"data class Video : RemoteTrack","description":"live.hms.video.connection.degredation.Video","location":"lib/live.hms.video.connection.degredation/-video/index.html","searchKeys":["Video","data class Video : RemoteTrack","live.hms.video.connection.degredation.Video"]},{"name":"data class VideoAnalytics(val rid: String?, val videoSamples: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/index.html","searchKeys":["VideoAnalytics","data class VideoAnalytics(val rid: String?, val videoSamples: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","live.hms.video.connection.stats.clientside.model.VideoAnalytics"]},{"name":"data class VideoParams(val bitRate: Int, val codec: HMSVideoCodec, val frameRate: Int, val width: Int, val height: Int)","description":"live.hms.video.sdk.models.role.VideoParams","location":"lib/live.hms.video.sdk.models.role/-video-params/index.html","searchKeys":["VideoParams","data class VideoParams(val bitRate: Int, val codec: HMSVideoCodec, val frameRate: Int, val width: Int, val height: Int)","live.hms.video.sdk.models.role.VideoParams"]},{"name":"data class VideoSamplesPublish(val total_quality_limitation: QualityLimitation, val avg_fps: Int, val resolution: Size, val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long, val totalPacketSendDelay: Double, val packetsSent: Long) : PublishBaseSamples","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/index.html","searchKeys":["VideoSamplesPublish","data class VideoSamplesPublish(val total_quality_limitation: QualityLimitation, val avg_fps: Int, val resolution: Size, val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long, val totalPacketSendDelay: Double, val packetsSent: Long) : PublishBaseSamples","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish"]},{"name":"data class VideoSamplesSubscribe(val timestamp: Long, val avg_frames_received_per_sec: Float, val avg_frames_dropped_per_sec: Float, val avg_frames_decoded_per_sec: Float, val total_pli_count: Int, val total_nack_count: Int, val avg_av_sync_ms: Int, val frame_width: Int, val frame_height: Int, val pause_count: Int, val pause_duration_seconds: Float, val freeze_count: Int, val freeze_duration_seconds: Float, val avg_jitter_buffer_delay: Float) : VideoSubscribeBaseSample","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/index.html","searchKeys":["VideoSamplesSubscribe","data class VideoSamplesSubscribe(val timestamp: Long, val avg_frames_received_per_sec: Float, val avg_frames_dropped_per_sec: Float, val avg_frames_decoded_per_sec: Float, val total_pli_count: Int, val total_nack_count: Int, val avg_av_sync_ms: Int, val frame_width: Int, val frame_height: Int, val pause_count: Int, val pause_duration_seconds: Float, val freeze_count: Int, val freeze_duration_seconds: Float, val avg_jitter_buffer_delay: Float) : VideoSubscribeBaseSample","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe"]},{"name":"data class VideoSimulcastLayersParams(val layers: ArrayList?)","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/index.html","searchKeys":["VideoSimulcastLayersParams","data class VideoSimulcastLayersParams(val layers: ArrayList?)","live.hms.video.sdk.models.role.VideoSimulcastLayersParams"]},{"name":"data class VideoTileLayout(val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/index.html","searchKeys":["VideoTileLayout","data class VideoTileLayout(val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout"]},{"name":"dvr","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.dvr","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/dvr/index.html","searchKeys":["dvr","dvr","live.hms.video.sdk.models.HMSHLSPlaylistType.dvr"]},{"name":"enum AgentType : Enum ","description":"live.hms.video.events.AgentType","location":"lib/live.hms.video.events/-agent-type/index.html","searchKeys":["AgentType","enum AgentType : Enum ","live.hms.video.events.AgentType"]},{"name":"enum AudioChangeEvent : Enum ","description":"live.hms.video.audio.AudioChangeEvent","location":"lib/live.hms.video.audio/-audio-change-event/index.html","searchKeys":["AudioChangeEvent","enum AudioChangeEvent : Enum ","live.hms.video.audio.AudioChangeEvent"]},{"name":"enum AudioDevice : Enum ","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/index.html","searchKeys":["AudioDevice","enum AudioDevice : Enum ","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice"]},{"name":"enum AudioDevice : Enum ","description":"live.hms.video.audio.HMSAudioManager.AudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/index.html","searchKeys":["AudioDevice","enum AudioDevice : Enum ","live.hms.video.audio.HMSAudioManager.AudioDevice"]},{"name":"enum AudioManagerState : Enum ","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/index.html","searchKeys":["AudioManagerState","enum AudioManagerState : Enum ","live.hms.video.audio.HMSAudioManager.AudioManagerState"]},{"name":"enum AudioMixingMode : Enum ","description":"live.hms.video.sdk.models.enums.AudioMixingMode","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/index.html","searchKeys":["AudioMixingMode","enum AudioMixingMode : Enum ","live.hms.video.sdk.models.enums.AudioMixingMode"]},{"name":"enum BeamRecordingStates : Enum ","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/index.html","searchKeys":["BeamRecordingStates","enum BeamRecordingStates : Enum ","live.hms.video.sdk.peerlist.models.BeamRecordingStates"]},{"name":"enum BeamStreamingStates : Enum ","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/index.html","searchKeys":["BeamStreamingStates","enum BeamStreamingStates : Enum ","live.hms.video.sdk.peerlist.models.BeamStreamingStates"]},{"name":"enum BluetoothErrorType : Enum ","description":"live.hms.video.audio.BluetoothErrorType","location":"lib/live.hms.video.audio/-bluetooth-error-type/index.html","searchKeys":["BluetoothErrorType","enum BluetoothErrorType : Enum ","live.hms.video.audio.BluetoothErrorType"]},{"name":"enum CameraFacing : Enum ","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/index.html","searchKeys":["CameraFacing","enum CameraFacing : Enum ","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing"]},{"name":"enum ConnectivityState : Enum ","description":"live.hms.video.diagnostics.models.ConnectivityState","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/index.html","searchKeys":["ConnectivityState","enum ConnectivityState : Enum ","live.hms.video.diagnostics.models.ConnectivityState"]},{"name":"enum DataChannelRequestMethod : Enum ","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/index.html","searchKeys":["DataChannelRequestMethod","enum DataChannelRequestMethod : Enum ","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod"]},{"name":"enum DegradationPreference : Enum ","description":"live.hms.video.sdk.models.DegradationPreference","location":"lib/live.hms.video.sdk.models/-degradation-preference/index.html","searchKeys":["DegradationPreference","enum DegradationPreference : Enum ","live.hms.video.sdk.models.DegradationPreference"]},{"name":"enum HMSAnalyticsEventLevel : Enum ","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/index.html","searchKeys":["HMSAnalyticsEventLevel","enum HMSAnalyticsEventLevel : Enum ","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel"]},{"name":"enum HMSAudioCodec : Enum ","description":"live.hms.video.media.codec.HMSAudioCodec","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/index.html","searchKeys":["HMSAudioCodec","enum HMSAudioCodec : Enum ","live.hms.video.media.codec.HMSAudioCodec"]},{"name":"enum HMSAudioMode : Enum ","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/index.html","searchKeys":["HMSAudioMode","enum HMSAudioMode : Enum ","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode"]},{"name":"enum HMSHLSPlaylistType : Enum ","description":"live.hms.video.sdk.models.HMSHLSPlaylistType","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/index.html","searchKeys":["HMSHLSPlaylistType","enum HMSHLSPlaylistType : Enum ","live.hms.video.sdk.models.HMSHLSPlaylistType"]},{"name":"enum HMSLayer : Enum ","description":"live.hms.video.media.settings.HMSLayer","location":"lib/live.hms.video.media.settings/-h-m-s-layer/index.html","searchKeys":["HMSLayer","enum HMSLayer : Enum ","live.hms.video.media.settings.HMSLayer"]},{"name":"enum HMSMessageRecipientType : Enum ","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/index.html","searchKeys":["HMSMessageRecipientType","enum HMSMessageRecipientType : Enum ","live.hms.video.sdk.models.enums.HMSMessageRecipientType"]},{"name":"enum HMSMode : Enum ","description":"live.hms.video.sdk.models.enums.HMSMode","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/index.html","searchKeys":["HMSMode","enum HMSMode : Enum ","live.hms.video.sdk.models.enums.HMSMode"]},{"name":"enum HMSPeerType : Enum ","description":"live.hms.video.sdk.models.HMSPeerType","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/index.html","searchKeys":["HMSPeerType","enum HMSPeerType : Enum ","live.hms.video.sdk.models.HMSPeerType"]},{"name":"enum HMSPeerUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/index.html","searchKeys":["HMSPeerUpdate","enum HMSPeerUpdate : Enum ","live.hms.video.sdk.models.enums.HMSPeerUpdate"]},{"name":"enum HMSPollQuestionType : Enum ","description":"live.hms.video.polls.models.question.HMSPollQuestionType","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/index.html","searchKeys":["HMSPollQuestionType","enum HMSPollQuestionType : Enum ","live.hms.video.polls.models.question.HMSPollQuestionType"]},{"name":"enum HMSPollUpdateType : Enum ","description":"live.hms.video.polls.models.HMSPollUpdateType","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/index.html","searchKeys":["HMSPollUpdateType","enum HMSPollUpdateType : Enum ","live.hms.video.polls.models.HMSPollUpdateType"]},{"name":"enum HMSRecordingState : Enum ","description":"live.hms.video.sdk.models.enums.HMSRecordingState","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/index.html","searchKeys":["HMSRecordingState","enum HMSRecordingState : Enum ","live.hms.video.sdk.models.enums.HMSRecordingState"]},{"name":"enum HMSRoomUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/index.html","searchKeys":["HMSRoomUpdate","enum HMSRoomUpdate : Enum ","live.hms.video.sdk.models.enums.HMSRoomUpdate"]},{"name":"enum HMSStreamingState : Enum ","description":"live.hms.video.sdk.models.enums.HMSStreamingState","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/index.html","searchKeys":["HMSStreamingState","enum HMSStreamingState : Enum ","live.hms.video.sdk.models.enums.HMSStreamingState"]},{"name":"enum HMSTrackType : Enum ","description":"live.hms.video.media.tracks.HMSTrackType","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/index.html","searchKeys":["HMSTrackType","enum HMSTrackType : Enum ","live.hms.video.media.tracks.HMSTrackType"]},{"name":"enum HMSTrackUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/index.html","searchKeys":["HMSTrackUpdate","enum HMSTrackUpdate : Enum ","live.hms.video.sdk.models.enums.HMSTrackUpdate"]},{"name":"enum HMSVideoCodec : Enum ","description":"live.hms.video.media.codec.HMSVideoCodec","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/index.html","searchKeys":["HMSVideoCodec","enum HMSVideoCodec : Enum ","live.hms.video.media.codec.HMSVideoCodec"]},{"name":"enum HMSVideoPluginType : Enum ","description":"live.hms.video.plugin.video.HMSVideoPluginType","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/index.html","searchKeys":["HMSVideoPluginType","enum HMSVideoPluginType : Enum ","live.hms.video.plugin.video.HMSVideoPluginType"]},{"name":"enum HmsPollCategory : Enum ","description":"live.hms.video.polls.models.HmsPollCategory","location":"lib/live.hms.video.polls.models/-hms-poll-category/index.html","searchKeys":["HmsPollCategory","enum HmsPollCategory : Enum ","live.hms.video.polls.models.HmsPollCategory"]},{"name":"enum HmsPollState : Enum ","description":"live.hms.video.polls.models.HmsPollState","location":"lib/live.hms.video.polls.models/-hms-poll-state/index.html","searchKeys":["HmsPollState","enum HmsPollState : Enum ","live.hms.video.polls.models.HmsPollState"]},{"name":"enum HmsPollUserTrackingMode : Enum ","description":"live.hms.video.polls.models.HmsPollUserTrackingMode","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/index.html","searchKeys":["HmsPollUserTrackingMode","enum HmsPollUserTrackingMode : Enum ","live.hms.video.polls.models.HmsPollUserTrackingMode"]},{"name":"enum InitState : Enum ","description":"live.hms.video.media.settings.HMSTrackSettings.InitState","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/index.html","searchKeys":["InitState","enum InitState : Enum ","live.hms.video.media.settings.HMSTrackSettings.InitState"]},{"name":"enum Layer : Enum ","description":"live.hms.video.sdk.models.Layer","location":"lib/live.hms.video.sdk.models/-layer/index.html","searchKeys":["Layer","enum Layer : Enum ","live.hms.video.sdk.models.Layer"]},{"name":"enum LogFiles : Enum ","description":"live.hms.video.utils.HMSLogger.LogFiles","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/index.html","searchKeys":["LogFiles","enum LogFiles : Enum ","live.hms.video.utils.HMSLogger.LogFiles"]},{"name":"enum LogLevel : Enum ","description":"live.hms.video.utils.HMSLogger.LogLevel","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","live.hms.video.utils.HMSLogger.LogLevel"]},{"name":"enum PhoneCallState","description":"live.hms.video.media.settings.PhoneCallState","location":"lib/live.hms.video.media.settings/-phone-call-state/index.html","searchKeys":["PhoneCallState","enum PhoneCallState","live.hms.video.media.settings.PhoneCallState"]},{"name":"enum QualityLimitationReason : Enum ","description":"live.hms.video.connection.degredation.QualityLimitationReason","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/index.html","searchKeys":["QualityLimitationReason","enum QualityLimitationReason : Enum ","live.hms.video.connection.degredation.QualityLimitationReason"]},{"name":"enum RetrySchedulerState : Enum ","description":"live.hms.video.sdk.models.enums.RetrySchedulerState","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/index.html","searchKeys":["RetrySchedulerState","enum RetrySchedulerState : Enum ","live.hms.video.sdk.models.enums.RetrySchedulerState"]},{"name":"enum State : Enum ","description":"live.hms.video.whiteboard.State","location":"lib/live.hms.video.whiteboard/-state/index.html","searchKeys":["State","enum State : Enum ","live.hms.video.whiteboard.State"]},{"name":"enum TranscriptionState : Enum ","description":"live.hms.video.sdk.models.TranscriptionState","location":"lib/live.hms.video.sdk.models/-transcription-state/index.html","searchKeys":["TranscriptionState","enum TranscriptionState : Enum ","live.hms.video.sdk.models.TranscriptionState"]},{"name":"enum TranscriptionsMode : Enum ","description":"live.hms.video.sdk.models.TranscriptionsMode","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/index.html","searchKeys":["TranscriptionsMode","enum TranscriptionsMode : Enum ","live.hms.video.sdk.models.TranscriptionsMode"]},{"name":"enum VideoPluginMode : Enum ","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/index.html","searchKeys":["VideoPluginMode","enum VideoPluginMode : Enum ","live.hms.video.plugin.video.virtualbackground.VideoPluginMode"]},{"name":"failed","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.failed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/failed/index.html","searchKeys":["failed","failed","live.hms.video.sdk.peerlist.models.BeamRecordingStates.failed"]},{"name":"failed","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.failed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/failed/index.html","searchKeys":["failed","failed","live.hms.video.sdk.peerlist.models.BeamStreamingStates.failed"]},{"name":"fun T.toJson(): String","description":"live.hms.video.utils.toJson","location":"lib/live.hms.video.utils/to-json.html","searchKeys":["toJson","fun T.toJson(): String","live.hms.video.utils.toJson"]},{"name":"fun T.toJsonObject(): JsonObject","description":"live.hms.video.utils.toJsonObject","location":"lib/live.hms.video.utils/to-json-object.html","searchKeys":["toJsonObject","fun T.toJsonObject(): JsonObject","live.hms.video.utils.toJsonObject"]},{"name":"fun AnalyticsCluster(websocketUrl: String = \"\")","description":"live.hms.video.database.entity.AnalyticsCluster.AnalyticsCluster","location":"lib/live.hms.video.database.entity/-analytics-cluster/-analytics-cluster.html","searchKeys":["AnalyticsCluster","fun AnalyticsCluster(websocketUrl: String = \"\")","live.hms.video.database.entity.AnalyticsCluster.AnalyticsCluster"]},{"name":"fun AnalyticsPeer(peerId: String? = null, role: String? = null, joinedAt: Long? = null, leftAt: Long? = null, roomName: String? = null, sessionStartedAt: Long? = null, userData: String? = null, userName: String? = null, templateId: String? = null, sessionId: String? = null)","description":"live.hms.video.database.entity.AnalyticsPeer.AnalyticsPeer","location":"lib/live.hms.video.database.entity/-analytics-peer/-analytics-peer.html","searchKeys":["AnalyticsPeer","fun AnalyticsPeer(peerId: String? = null, role: String? = null, joinedAt: Long? = null, leftAt: Long? = null, roomName: String? = null, sessionStartedAt: Long? = null, userData: String? = null, userName: String? = null, templateId: String? = null, sessionId: String? = null)","live.hms.video.database.entity.AnalyticsPeer.AnalyticsPeer"]},{"name":"fun AudioAnalytics(audioSample: List, trackId: String, ssrc: String, source: String)","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.AudioAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/-audio-analytics.html","searchKeys":["AudioAnalytics","fun AudioAnalytics(audioSample: List, trackId: String, ssrc: String, source: String)","live.hms.video.connection.stats.clientside.model.AudioAnalytics.AudioAnalytics"]},{"name":"fun AudioInputDeviceReport()","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport.AudioInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/-audio-input-device-report.html","searchKeys":["AudioInputDeviceReport","fun AudioInputDeviceReport()","live.hms.video.diagnostics.models.AudioInputDeviceReport.AudioInputDeviceReport"]},{"name":"fun AudioOutputDeviceReport()","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport.AudioOutputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/-audio-output-device-report.html","searchKeys":["AudioOutputDeviceReport","fun AudioOutputDeviceReport()","live.hms.video.diagnostics.models.AudioOutputDeviceReport.AudioOutputDeviceReport"]},{"name":"fun AudioParams(bitRate: Int, codec: HMSAudioCodec)","description":"live.hms.video.sdk.models.role.AudioParams.AudioParams","location":"lib/live.hms.video.sdk.models.role/-audio-params/-audio-params.html","searchKeys":["AudioParams","fun AudioParams(bitRate: Int, codec: HMSAudioCodec)","live.hms.video.sdk.models.role.AudioParams.AudioParams"]},{"name":"fun AudioSamplesPublish(timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long)","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.AudioSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/-audio-samples-publish.html","searchKeys":["AudioSamplesPublish","fun AudioSamplesPublish(timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long)","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.AudioSamplesPublish"]},{"name":"fun AudioSamplesSubscribe(timestamp: Long, audio_level_high_seconds: Long, audio_concealed_samples: Long, audio_total_samples_received: Long, audio_concealment_events: Long, fec_packets_discarded: Long, fec_packets_received: Long, total_samples_duration: Float, total_packets_received: Long, total_packets_lost: Long, jitter_buffer_delay: Double)","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.AudioSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/-audio-samples-subscribe.html","searchKeys":["AudioSamplesSubscribe","fun AudioSamplesSubscribe(timestamp: Long, audio_level_high_seconds: Long, audio_concealed_samples: Long, audio_total_samples_received: Long, audio_concealment_events: Long, fec_packets_discarded: Long, fec_packets_received: Long, total_samples_duration: Float, total_packets_received: Long, total_packets_lost: Long, jitter_buffer_delay: Double)","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.AudioSamplesSubscribe"]},{"name":"fun BitMatrix(bitmap: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.BitMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/-bit-matrix.html","searchKeys":["BitMatrix","fun BitMatrix(bitmap: Bitmap)","live.hms.video.media.capturers.camera.utils.BitMatrix.BitMatrix"]},{"name":"fun Bitmap.applyMatrix(operations: BitMatrix.() -> Matrix): Bitmap","description":"live.hms.video.media.capturers.camera.utils.applyMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/apply-matrix.html","searchKeys":["applyMatrix","fun Bitmap.applyMatrix(operations: BitMatrix.() -> Matrix): Bitmap","live.hms.video.media.capturers.camera.utils.applyMatrix"]},{"name":"fun BluetoothPermissionHandler(hmsTrackSettings: HMSTrackSettings)","description":"live.hms.video.audio.BluetoothPermissionHandler.BluetoothPermissionHandler","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/-bluetooth-permission-handler.html","searchKeys":["BluetoothPermissionHandler","fun BluetoothPermissionHandler(hmsTrackSettings: HMSTrackSettings)","live.hms.video.audio.BluetoothPermissionHandler.BluetoothPermissionHandler"]},{"name":"fun Brb()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb.Brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-brb/-brb.html","searchKeys":["Brb","fun Brb()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb.Brb"]},{"name":"fun Browser(enabled: Boolean?, startedAt: Long?, stoppedAt: Long?, initialisedAt: Long?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Browser.Browser","location":"lib/live.hms.video.sdk.peerlist.models/-browser/-browser.html","searchKeys":["Browser","fun Browser(enabled: Boolean?, startedAt: Long?, stoppedAt: Long?, initialisedAt: Long?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Browser.Browser"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSSimulcastSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.polls.HMSPollBuilder.Builder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.polls.HMSPollBuilder.Builder.Builder"]},{"name":"fun Builder(context: Context)","description":"live.hms.video.sdk.HMSSDK.Builder.Builder","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/-builder.html","searchKeys":["Builder","fun Builder(context: Context)","live.hms.video.sdk.HMSSDK.Builder.Builder"]},{"name":"fun Builder(type: HMSPollQuestionType)","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/-builder.html","searchKeys":["Builder","fun Builder(type: HMSPollQuestionType)","live.hms.video.polls.HMSPollQuestionBuilder.Builder.Builder"]},{"name":"fun Chat(allowPinningMessages: Boolean?, initialState: String?, overlayView: Boolean?, publicChatEnabled: Boolean, rolesWhiteList: List?, privateChatEnabled: Boolean, chatTitle: String, messagePlaceholder: String, realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.Chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/-chat.html","searchKeys":["Chat","fun Chat(allowPinningMessages: Boolean?, initialState: String?, overlayView: Boolean?, publicChatEnabled: Boolean, rolesWhiteList: List?, privateChatEnabled: Boolean, chatTitle: String, messagePlaceholder: String, realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.Chat"]},{"name":"fun Conferencing(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-conferencing.html","searchKeys":["Conferencing","fun Conferencing(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Conferencing"]},{"name":"fun ConnectivityCheckResult()","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.ConnectivityCheckResult","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/-connectivity-check-result.html","searchKeys":["ConnectivityCheckResult","fun ConnectivityCheckResult()","live.hms.video.diagnostics.models.ConnectivityCheckResult.ConnectivityCheckResult"]},{"name":"fun Context.safeUnregisterReceiver(receiver: BroadcastReceiver?)","description":"live.hms.video.utils.safeUnregisterReceiver","location":"lib/live.hms.video.utils/safe-unregister-receiver.html","searchKeys":["safeUnregisterReceiver","fun Context.safeUnregisterReceiver(receiver: BroadcastReceiver?)","live.hms.video.utils.safeUnregisterReceiver"]},{"name":"fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-default.html","searchKeys":["Default","fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Default"]},{"name":"fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-default.html","searchKeys":["Default","fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Default"]},{"name":"fun DeviceTestReport()","description":"live.hms.video.diagnostics.models.DeviceTestReport.DeviceTestReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/-device-test-report.html","searchKeys":["DeviceTestReport","fun DeviceTestReport()","live.hms.video.diagnostics.models.DeviceTestReport.DeviceTestReport"]},{"name":"fun Elements(chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-elements.html","searchKeys":["Elements","fun Elements(chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Elements"]},{"name":"fun Elements(joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-elements.html","searchKeys":["Elements","fun Elements(joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.Elements"]},{"name":"fun EmojiReactions()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions.EmojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-emoji-reactions/-emoji-reactions.html","searchKeys":["EmojiReactions","fun EmojiReactions()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions.EmojiReactions"]},{"name":"fun ErrorTokenResult(errorMessage: String?)","description":"live.hms.video.signal.init.ErrorTokenResult.ErrorTokenResult","location":"lib/live.hms.video.signal.init/-error-token-result/-error-token-result.html","searchKeys":["ErrorTokenResult","fun ErrorTokenResult(errorMessage: String?)","live.hms.video.signal.init.ErrorTokenResult.ErrorTokenResult"]},{"name":"fun FeatureFlags(flags: Set)","description":"live.hms.video.sdk.featureflags.FeatureFlags.FeatureFlags","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/-feature-flags.html","searchKeys":["FeatureFlags","fun FeatureFlags(flags: Set)","live.hms.video.sdk.featureflags.FeatureFlags.FeatureFlags"]},{"name":"fun FrameworkInfo(framework: AgentType, frameworkSdkVersion: String? = null, frameworkVersion: String? = null, isPrebuilt: Boolean)","description":"live.hms.video.sdk.models.FrameworkInfo.FrameworkInfo","location":"lib/live.hms.video.sdk.models/-framework-info/-framework-info.html","searchKeys":["FrameworkInfo","fun FrameworkInfo(framework: AgentType, frameworkSdkVersion: String? = null, frameworkVersion: String? = null, isPrebuilt: Boolean)","live.hms.video.sdk.models.FrameworkInfo.FrameworkInfo"]},{"name":"fun Grid(enableLocalTileInset: Boolean?, enableSpotlightingPeer: Boolean?, prominentRoles: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.Grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/-grid.html","searchKeys":["Grid","fun Grid(enableLocalTileInset: Boolean?, enableSpotlightingPeer: Boolean?, prominentRoles: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.Grid"]},{"name":"fun GroupJoinLeaveResponse(groups: ArrayList?)","description":"live.hms.video.groups.GroupJoinLeaveResponse.GroupJoinLeaveResponse","location":"lib/live.hms.video.groups/-group-join-leave-response/-group-join-leave-response.html","searchKeys":["GroupJoinLeaveResponse","fun GroupJoinLeaveResponse(groups: ArrayList?)","live.hms.video.groups.GroupJoinLeaveResponse.GroupJoinLeaveResponse"]},{"name":"fun HLSLiveStreamingHeader(title: String?, description: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.HLSLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/-h-l-s-live-streaming-header.html","searchKeys":["HLSLiveStreamingHeader","fun HLSLiveStreamingHeader(title: String?, description: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.HLSLiveStreamingHeader"]},{"name":"fun HMSAudioDeviceInfo(type: HMSAudioManager.AudioDevice, name: String)","description":"live.hms.video.audio.HMSAudioDeviceInfo.HMSAudioDeviceInfo","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/-h-m-s-audio-device-info.html","searchKeys":["HMSAudioDeviceInfo","fun HMSAudioDeviceInfo(type: HMSAudioManager.AudioDevice, name: String)","live.hms.video.audio.HMSAudioDeviceInfo.HMSAudioDeviceInfo"]},{"name":"fun HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, source: String = HMSTrackSource.REGULAR)","description":"live.hms.video.media.tracks.HMSAudioTrack.HMSAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/-h-m-s-audio-track.html","searchKeys":["HMSAudioTrack","fun HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, source: String = HMSTrackSource.REGULAR)","live.hms.video.media.tracks.HMSAudioTrack.HMSAudioTrack"]},{"name":"fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/-h-m-s-background-media.html","searchKeys":["HMSBackgroundMedia","fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia"]},{"name":"fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/-h-m-s-background-media.html","searchKeys":["HMSBackgroundMedia","fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia"]},{"name":"fun HMSBitmapPlugin(hmsSDK: HMSSDK, hmsBitmapUpdateListener: HMSBitmapUpdateListener)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.HMSBitmapPlugin","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-h-m-s-bitmap-plugin.html","searchKeys":["HMSBitmapPlugin","fun HMSBitmapPlugin(hmsSDK: HMSSDK, hmsBitmapUpdateListener: HMSBitmapUpdateListener)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.HMSBitmapPlugin"]},{"name":"fun HMSBrowserRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, initialising: Boolean = false, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.HMSBrowserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/-h-m-s-browser-recording-state.html","searchKeys":["HMSBrowserRecordingState","fun HMSBrowserRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, initialising: Boolean = false, state: HMSRecordingState)","live.hms.video.sdk.models.HMSBrowserRecordingState.HMSBrowserRecordingState"]},{"name":"fun HMSChangeTrackStateRequest(track: HMSTrack, requestedBy: HMSPeer?, mute: Boolean)","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.HMSChangeTrackStateRequest","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/-h-m-s-change-track-state-request.html","searchKeys":["HMSChangeTrackStateRequest","fun HMSChangeTrackStateRequest(track: HMSTrack, requestedBy: HMSPeer?, mute: Boolean)","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.HMSChangeTrackStateRequest"]},{"name":"fun HMSColorPalette(alertErrorBright: String?, alertErrorBrighter: String?, alertErrorDefault: String?, alertErrorDim: String?, alertSuccess: String?, alertWarning: String?, backgroundDefault: String?, backgroundDim: String?, borderBright: String?, borderDefault: String?, onPrimaryHigh: String?, onPrimaryLow: String?, onPrimaryMedium: String?, onSecondaryHigh: String?, onSecondaryLow: String?, onSecondaryMedium: String?, onSurfaceHigh: String?, onSurfaceLow: String?, onSurfaceMedium: String?, primaryBright: String?, primaryDefault: String?, primaryDim: String?, primaryDisabled: String?, secondaryBright: String?, secondaryDefault: String?, secondaryDim: String?, secondaryDisabled: String?, surfaceBright: String?, surfaceBrighter: String?, surfaceDefault: String?, surfaceDim: String?, borderLight: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.HMSColorPalette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/-h-m-s-color-palette.html","searchKeys":["HMSColorPalette","fun HMSColorPalette(alertErrorBright: String?, alertErrorBrighter: String?, alertErrorDefault: String?, alertErrorDim: String?, alertSuccess: String?, alertWarning: String?, backgroundDefault: String?, backgroundDim: String?, borderBright: String?, borderDefault: String?, onPrimaryHigh: String?, onPrimaryLow: String?, onPrimaryMedium: String?, onSecondaryHigh: String?, onSecondaryLow: String?, onSecondaryMedium: String?, onSurfaceHigh: String?, onSurfaceLow: String?, onSurfaceMedium: String?, primaryBright: String?, primaryDefault: String?, primaryDim: String?, primaryDisabled: String?, secondaryBright: String?, secondaryDefault: String?, secondaryDim: String?, secondaryDisabled: String?, surfaceBright: String?, surfaceBrighter: String?, surfaceDefault: String?, surfaceDim: String?, borderLight: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.HMSColorPalette"]},{"name":"fun HMSConfig(userName: String, authtoken: String, metadata: String = \"\", captureNetworkQualityInPreview: Boolean = false, initEndpoint: String = cDefaultInitEndpoint)","description":"live.hms.video.sdk.models.HMSConfig.HMSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-config/-h-m-s-config.html","searchKeys":["HMSConfig","fun HMSConfig(userName: String, authtoken: String, metadata: String = \"\", captureNetworkQualityInPreview: Boolean = false, initEndpoint: String = cDefaultInitEndpoint)","live.hms.video.sdk.models.HMSConfig.HMSConfig"]},{"name":"fun HMSCreateWhiteBoardResponse(id: String?, owner: String?)","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.HMSCreateWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/-h-m-s-create-white-board-response.html","searchKeys":["HMSCreateWhiteBoardResponse","fun HMSCreateWhiteBoardResponse(id: String?, owner: String?)","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.HMSCreateWhiteBoardResponse"]},{"name":"fun HMSException(code: Int, name: String, action: String, message: String, description: String, cause: Throwable? = null, isTerminal: Boolean = true, params: HashMap = hashMapOf())","description":"live.hms.video.error.HMSException.HMSException","location":"lib/live.hms.video.error/-h-m-s-exception/-h-m-s-exception.html","searchKeys":["HMSException","fun HMSException(code: Int, name: String, action: String, message: String, description: String, cause: Throwable? = null, isTerminal: Boolean = true, params: HashMap = hashMapOf())","live.hms.video.error.HMSException.HMSException"]},{"name":"fun HMSGetWhiteBoardResponse(id: String?, addr: String?, token: String?, owner: String?, permissions: List?)","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.HMSGetWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/-h-m-s-get-white-board-response.html","searchKeys":["HMSGetWhiteBoardResponse","fun HMSGetWhiteBoardResponse(id: String?, addr: String?, token: String?, owner: String?, permissions: List?)","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.HMSGetWhiteBoardResponse"]},{"name":"fun HMSHLSConfig(meetingURLVariants: List? = null, hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","description":"live.hms.video.sdk.models.HMSHLSConfig.HMSHLSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/-h-m-s-h-l-s-config.html","searchKeys":["HMSHLSConfig","fun HMSHLSConfig(meetingURLVariants: List? = null, hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","live.hms.video.sdk.models.HMSHLSConfig.HMSHLSConfig"]},{"name":"fun HMSHLSMeetingURLVariant(meetingUrl: String? = null, metadata: String = \"\")","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.HMSHLSMeetingURLVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/-h-m-s-h-l-s-meeting-u-r-l-variant.html","searchKeys":["HMSHLSMeetingURLVariant","fun HMSHLSMeetingURLVariant(meetingUrl: String? = null, metadata: String = \"\")","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.HMSHLSMeetingURLVariant"]},{"name":"fun HMSHLSStreamingState(running: Boolean, variants: ArrayList?, error: HMSException?, state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSHLSStreamingState.HMSHLSStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/-h-m-s-h-l-s-streaming-state.html","searchKeys":["HMSHLSStreamingState","fun HMSHLSStreamingState(running: Boolean, variants: ArrayList?, error: HMSException?, state: HMSStreamingState)","live.hms.video.sdk.models.HMSHLSStreamingState.HMSHLSStreamingState"]},{"name":"fun HMSHLSTimedMetadata(payload: String, duration: Long)","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.HMSHLSTimedMetadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/-h-m-s-h-l-s-timed-metadata.html","searchKeys":["HMSHLSTimedMetadata","fun HMSHLSTimedMetadata(payload: String, duration: Long)","live.hms.video.sdk.models.HMSHLSTimedMetadata.HMSHLSTimedMetadata"]},{"name":"fun HMSHLSVariant(hlsStreamUrl: String?, meetingUrl: String?, metadata: String?, startedAt: Long?, updatedAt: Long?, state: BeamStreamingStates?, playlistType: HMSHLSPlaylistType?)","description":"live.hms.video.sdk.models.HMSHLSVariant.HMSHLSVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/-h-m-s-h-l-s-variant.html","searchKeys":["HMSHLSVariant","fun HMSHLSVariant(hlsStreamUrl: String?, meetingUrl: String?, metadata: String?, startedAt: Long?, updatedAt: Long?, state: BeamStreamingStates?, playlistType: HMSHLSPlaylistType?)","live.hms.video.sdk.models.HMSHLSVariant.HMSHLSVariant"]},{"name":"fun HMSHlsRecordingConfig(singleFilePerLayer: Boolean, videoOnDemand: Boolean)","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.HMSHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/-h-m-s-hls-recording-config.html","searchKeys":["HMSHlsRecordingConfig","fun HMSHlsRecordingConfig(singleFilePerLayer: Boolean, videoOnDemand: Boolean)","live.hms.video.sdk.models.HMSHlsRecordingConfig.HMSHlsRecordingConfig"]},{"name":"fun HMSLayoutOptions(key1: String?, key2: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.HMSLayoutOptions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/-h-m-s-layout-options.html","searchKeys":["HMSLayoutOptions","fun HMSLayoutOptions(key1: String?, key2: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.HMSLayoutOptions"]},{"name":"fun HMSLocalAudioStats(roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?)","description":"live.hms.video.connection.stats.HMSLocalAudioStats.HMSLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html","searchKeys":["HMSLocalAudioStats","fun HMSLocalAudioStats(roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?)","live.hms.video.connection.stats.HMSLocalAudioStats.HMSLocalAudioStats"]},{"name":"fun HMSLocalVideoStats(roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, resolution: HMSVideoResolution?, frameRate: Double?, qualityLimitationReason: QualityLimitationReasons, hmsLayer: HMSLayer?, packetLoss: Long?)","description":"live.hms.video.connection.stats.HMSLocalVideoStats.HMSLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/-h-m-s-local-video-stats.html","searchKeys":["HMSLocalVideoStats","fun HMSLocalVideoStats(roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, resolution: HMSVideoResolution?, frameRate: Double?, qualityLimitationReason: QualityLimitationReasons, hmsLayer: HMSLayer?, packetLoss: Long?)","live.hms.video.connection.stats.HMSLocalVideoStats.HMSLocalVideoStats"]},{"name":"fun HMSLogSettings(maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, isLogStorageEnabled: Boolean = false, level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","description":"live.hms.video.media.settings.HMSLogSettings.HMSLogSettings","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/-h-m-s-log-settings.html","searchKeys":["HMSLogSettings","fun HMSLogSettings(maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, isLogStorageEnabled: Boolean = false, level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","live.hms.video.media.settings.HMSLogSettings.HMSLogSettings"]},{"name":"fun HMSMediaStream(nativeStream: MediaStream)","description":"live.hms.video.media.streams.HMSMediaStream.HMSMediaStream","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/-h-m-s-media-stream.html","searchKeys":["HMSMediaStream","fun HMSMediaStream(nativeStream: MediaStream)","live.hms.video.media.streams.HMSMediaStream.HMSMediaStream"]},{"name":"fun HMSMessageSendResponse(timestamp: Long, messageId: String? = \"\")","description":"live.hms.video.sdk.models.HMSMessageSendResponse.HMSMessageSendResponse","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/-h-m-s-message-send-response.html","searchKeys":["HMSMessageSendResponse","fun HMSMessageSendResponse(timestamp: Long, messageId: String? = \"\")","live.hms.video.sdk.models.HMSMessageSendResponse.HMSMessageSendResponse"]},{"name":"fun HMSNetworkQuality(downlinkQuality: Int)","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality.HMSNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/-h-m-s-network-quality.html","searchKeys":["HMSNetworkQuality","fun HMSNetworkQuality(downlinkQuality: Int)","live.hms.video.connection.stats.quality.HMSNetworkQuality.HMSNetworkQuality"]},{"name":"fun HMSPollLeaderboardEntry(position: Long?, score: Long?, totalResponses: Long?, correctResponses: Long?, duration: Long?, peer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.HMSPollLeaderboardEntry","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/-h-m-s-poll-leaderboard-entry.html","searchKeys":["HMSPollLeaderboardEntry","fun HMSPollLeaderboardEntry(position: Long?, score: Long?, totalResponses: Long?, correctResponses: Long?, duration: Long?, peer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.HMSPollLeaderboardEntry.HMSPollLeaderboardEntry"]},{"name":"fun HMSPollLeaderboardResponse(pollId: String, last: Boolean?, leaderboard: List?, totalUsers: Long?, votedUsers: Long?, correctUsers: Long?, avgTime: Long?, avgScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.HMSPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/-h-m-s-poll-leaderboard-response.html","searchKeys":["HMSPollLeaderboardResponse","fun HMSPollLeaderboardResponse(pollId: String, last: Boolean?, leaderboard: List?, totalUsers: Long?, votedUsers: Long?, correctUsers: Long?, avgTime: Long?, avgScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardResponse.HMSPollLeaderboardResponse"]},{"name":"fun HMSPollLeaderboardSummary(totalPeersCount: Int?, respondedPeersCount: Int?, respondedCorrectlyPeersCount: Int?, averageTime: Long?, averageScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.HMSPollLeaderboardSummary","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/-h-m-s-poll-leaderboard-summary.html","searchKeys":["HMSPollLeaderboardSummary","fun HMSPollLeaderboardSummary(totalPeersCount: Int?, respondedPeersCount: Int?, respondedCorrectlyPeersCount: Int?, averageTime: Long?, averageScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardSummary.HMSPollLeaderboardSummary"]},{"name":"fun HMSPollQuestion(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 0, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = null, options: List? = null, correctAnswer: HMSPollQuestionAnswer? = null, negative: Boolean = false, myResponses: MutableList = mutableListOf())","description":"live.hms.video.polls.models.question.HMSPollQuestion.HMSPollQuestion","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/-h-m-s-poll-question.html","searchKeys":["HMSPollQuestion","fun HMSPollQuestion(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 0, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = null, options: List? = null, correctAnswer: HMSPollQuestionAnswer? = null, negative: Boolean = false, myResponses: MutableList = mutableListOf())","live.hms.video.polls.models.question.HMSPollQuestion.HMSPollQuestion"]},{"name":"fun HMSPollQuestionAnswer(hidden: Boolean = false, option: Int? = null, options: List? = null, text: String = \"\", caseSensitive: Boolean = false, emptySpaceTrimmed: Boolean = false)","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.HMSPollQuestionAnswer","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/-h-m-s-poll-question-answer.html","searchKeys":["HMSPollQuestionAnswer","fun HMSPollQuestionAnswer(hidden: Boolean = false, option: Int? = null, options: List? = null, text: String = \"\", caseSensitive: Boolean = false, emptySpaceTrimmed: Boolean = false)","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.HMSPollQuestionAnswer"]},{"name":"fun HMSPollQuestionOption(index: Int, text: String? = \"\", weight: Int? = null, case: Boolean = false, trim: Boolean = false, voteCount: Long = 0)","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.HMSPollQuestionOption","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/-h-m-s-poll-question-option.html","searchKeys":["HMSPollQuestionOption","fun HMSPollQuestionOption(index: Int, text: String? = \"\", weight: Int? = null, case: Boolean = false, trim: Boolean = false, voteCount: Long = 0)","live.hms.video.polls.models.question.HMSPollQuestionOption.HMSPollQuestionOption"]},{"name":"fun HMSPollQuestionResponse(responseId: String, index: Int, questionType: HMSPollQuestionType, skipped: Boolean, selectedOption: Int?, selectedOptions: List?, text: String?, answerChanged: Boolean)","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.HMSPollQuestionResponse","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/-h-m-s-poll-question-response.html","searchKeys":["HMSPollQuestionResponse","fun HMSPollQuestionResponse(responseId: String, index: Int, questionType: HMSPollQuestionType, skipped: Boolean, selectedOption: Int?, selectedOptions: List?, text: String?, answerChanged: Boolean)","live.hms.video.polls.models.network.HMSPollQuestionResponse.HMSPollQuestionResponse"]},{"name":"fun HMSPollResponseBuilder(hmsPoll: HmsPoll, userId: String?)","description":"live.hms.video.polls.HMSPollResponseBuilder.HMSPollResponseBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/-h-m-s-poll-response-builder.html","searchKeys":["HMSPollResponseBuilder","fun HMSPollResponseBuilder(hmsPoll: HmsPoll, userId: String?)","live.hms.video.polls.HMSPollResponseBuilder.HMSPollResponseBuilder"]},{"name":"fun HMSPollResponsePeerInfo(hash: String, peerid: String?, userid: String?, username: String?)","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.HMSPollResponsePeerInfo","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/-h-m-s-poll-response-peer-info.html","searchKeys":["HMSPollResponsePeerInfo","fun HMSPollResponsePeerInfo(hash: String, peerid: String?, userid: String?, username: String?)","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.HMSPollResponsePeerInfo"]},{"name":"fun HMSRTCStats(bytesSent: Long, bytesReceived: Long, packetsReceived: Long, packetsLost: Long, bitrateSent: Double, bitrateReceived: Double, roundTripTime: Double)","description":"live.hms.video.connection.stats.HMSRTCStats.HMSRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/-h-m-s-r-t-c-stats.html","searchKeys":["HMSRTCStats","fun HMSRTCStats(bytesSent: Long, bytesReceived: Long, packetsReceived: Long, packetsLost: Long, bitrateSent: Double, bitrateReceived: Double, roundTripTime: Double)","live.hms.video.connection.stats.HMSRTCStats.HMSRTCStats"]},{"name":"fun HMSRTCStatsReport(combined: HMSRTCStats, audio: HMSRTCStats, video: HMSRTCStats)","description":"live.hms.video.connection.stats.HMSRTCStatsReport.HMSRTCStatsReport","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/-h-m-s-r-t-c-stats-report.html","searchKeys":["HMSRTCStatsReport","fun HMSRTCStatsReport(combined: HMSRTCStats, audio: HMSRTCStats, video: HMSRTCStats)","live.hms.video.connection.stats.HMSRTCStatsReport.HMSRTCStatsReport"]},{"name":"fun HMSRecordingConfig(meetingUrl: String? = null, rtmpUrls: List, record: Boolean, resolution: HMSRtmpVideoResolution? = null)","description":"live.hms.video.sdk.models.HMSRecordingConfig.HMSRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/-h-m-s-recording-config.html","searchKeys":["HMSRecordingConfig","fun HMSRecordingConfig(meetingUrl: String? = null, rtmpUrls: List, record: Boolean, resolution: HMSRtmpVideoResolution? = null)","live.hms.video.sdk.models.HMSRecordingConfig.HMSRecordingConfig"]},{"name":"fun HMSRemoteAudioStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?)","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.HMSRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/-h-m-s-remote-audio-stats.html","searchKeys":["HMSRemoteAudioStats","fun HMSRemoteAudioStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?)","live.hms.video.connection.stats.HMSRemoteAudioStats.HMSRemoteAudioStats"]},{"name":"fun HMSRemoteVideoStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?, resolution: HMSVideoResolution?, frameRate: Double?)","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.HMSRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/-h-m-s-remote-video-stats.html","searchKeys":["HMSRemoteVideoStats","fun HMSRemoteVideoStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?, resolution: HMSVideoResolution?, frameRate: Double?)","live.hms.video.connection.stats.HMSRemoteVideoStats.HMSRemoteVideoStats"]},{"name":"fun HMSRemovedFromRoom(reason: String, peerWhoRemoved: HMSPeer?, roomWasEnded: Boolean)","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.HMSRemovedFromRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/-h-m-s-removed-from-room.html","searchKeys":["HMSRemovedFromRoom","fun HMSRemovedFromRoom(reason: String, peerWhoRemoved: HMSPeer?, roomWasEnded: Boolean)","live.hms.video.sdk.models.HMSRemovedFromRoom.HMSRemovedFromRoom"]},{"name":"fun HMSRoomLayout(data: List?, last: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout.html","searchKeys":["HMSRoomLayout","fun HMSRoomLayout(data: List?, last: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayout"]},{"name":"fun HMSRoomLayoutData(appId: String?, id: String?, options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, role: String?, roleId: String?, templateId: String?, typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, themes: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomLayoutData","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-layout-data.html","searchKeys":["HMSRoomLayoutData","fun HMSRoomLayoutData(appId: String?, id: String?, options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, role: String?, roleId: String?, templateId: String?, typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, themes: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomLayoutData"]},{"name":"fun HMSRoomTheme(default: Boolean?, name: String?, palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSRoomTheme","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-room-theme.html","searchKeys":["HMSRoomTheme","fun HMSRoomTheme(default: Boolean?, name: String?, palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSRoomTheme"]},{"name":"fun HMSRtmpStreamingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.HMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/-h-m-s-rtmp-streaming-state.html","searchKeys":["HMSRtmpStreamingState","fun HMSRtmpStreamingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, state: HMSStreamingState)","live.hms.video.sdk.models.HMSRtmpStreamingState.HMSRtmpStreamingState"]},{"name":"fun HMSRtmpVideoResolution(width: Int, height: Int)","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.HMSRtmpVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/-h-m-s-rtmp-video-resolution.html","searchKeys":["HMSRtmpVideoResolution","fun HMSRtmpVideoResolution(width: Int, height: Int)","live.hms.video.media.settings.HMSRtmpVideoResolution.HMSRtmpVideoResolution"]},{"name":"fun HMSScreenCaptureService()","description":"live.hms.video.services.HMSScreenCaptureService.HMSScreenCaptureService","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-h-m-s-screen-capture-service.html","searchKeys":["HMSScreenCaptureService","fun HMSScreenCaptureService()","live.hms.video.services.HMSScreenCaptureService.HMSScreenCaptureService"]},{"name":"fun HMSServerRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSServerRecordingState.HMSServerRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/-h-m-s-server-recording-state.html","searchKeys":["HMSServerRecordingState","fun HMSServerRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, state: HMSRecordingState)","live.hms.video.sdk.models.HMSServerRecordingState.HMSServerRecordingState"]},{"name":"fun HMSSimulcastLayerDefinition(resolution: HMSVideoResolution, layer: HMSLayer)","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.HMSSimulcastLayerDefinition","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/-h-m-s-simulcast-layer-definition.html","searchKeys":["HMSSimulcastLayerDefinition","fun HMSSimulcastLayerDefinition(resolution: HMSVideoResolution, layer: HMSLayer)","live.hms.video.media.settings.HMSSimulcastLayerDefinition.HMSSimulcastLayerDefinition"]},{"name":"fun HMSTranscriptionPermissions()","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.HMSTranscriptionPermissions","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/-h-m-s-transcription-permissions.html","searchKeys":["HMSTranscriptionPermissions","fun HMSTranscriptionPermissions()","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.HMSTranscriptionPermissions"]},{"name":"fun HMSVideoDecoderFactory(eglContext: EglBase.Context, forceSoftwareDecoder: Boolean = false)","description":"live.hms.video.factories.HMSVideoDecoderFactory.HMSVideoDecoderFactory","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/-h-m-s-video-decoder-factory.html","searchKeys":["HMSVideoDecoderFactory","fun HMSVideoDecoderFactory(eglContext: EglBase.Context, forceSoftwareDecoder: Boolean = false)","live.hms.video.factories.HMSVideoDecoderFactory.HMSVideoDecoderFactory"]},{"name":"fun HMSVideoResolution(width: Int, height: Int)","description":"live.hms.video.media.settings.HMSVideoResolution.HMSVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/-h-m-s-video-resolution.html","searchKeys":["HMSVideoResolution","fun HMSVideoResolution(width: Int, height: Int)","live.hms.video.media.settings.HMSVideoResolution.HMSVideoResolution"]},{"name":"fun HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, source: String)","description":"live.hms.video.media.tracks.HMSVideoTrack.HMSVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/-h-m-s-video-track.html","searchKeys":["HMSVideoTrack","fun HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, source: String)","live.hms.video.media.tracks.HMSVideoTrack.HMSVideoTrack"]},{"name":"fun HMSVirtualBackground(backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun HMSVirtualBackground(backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun HMSWhiteBoardPermission(admin: Boolean, read: Boolean, write: Boolean)","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.HMSWhiteBoardPermission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/-h-m-s-white-board-permission.html","searchKeys":["HMSWhiteBoardPermission","fun HMSWhiteBoardPermission(admin: Boolean, read: Boolean, write: Boolean)","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.HMSWhiteBoardPermission"]},{"name":"fun HMSWhiteboard(id: String, title: String? = null, owner: HMSPeer? = null, isOwner: Boolean, url: String, state: State = State.Stopped)","description":"live.hms.video.whiteboard.HMSWhiteboard.HMSWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/-h-m-s-whiteboard.html","searchKeys":["HMSWhiteboard","fun HMSWhiteboard(id: String, title: String? = null, owner: HMSPeer? = null, isOwner: Boolean, url: String, state: State = State.Stopped)","live.hms.video.whiteboard.HMSWhiteboard.HMSWhiteboard"]},{"name":"fun HMSWhiteboardPermissions(admin: List, reader: List, writer: List)","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.HMSWhiteboardPermissions","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/-h-m-s-whiteboard-permissions.html","searchKeys":["HMSWhiteboardPermissions","fun HMSWhiteboardPermissions(admin: List, reader: List, writer: List)","live.hms.video.whiteboard.HMSWhiteboardPermissions.HMSWhiteboardPermissions"]},{"name":"fun HandRaise()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise.HandRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-hand-raise/-hand-raise.html","searchKeys":["HandRaise","fun HandRaise()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise.HandRaise"]},{"name":"fun Hls(enabled: Boolean, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Hls.Hls","location":"lib/live.hms.video.sdk.peerlist.models/-hls/-hls.html","searchKeys":["Hls","fun Hls(enabled: Boolean, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Hls.Hls"]},{"name":"fun HmsHlsRecordingState(running: Boolean?, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, error: HMSException?, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HmsHlsRecordingState.HmsHlsRecordingState","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/-hms-hls-recording-state.html","searchKeys":["HmsHlsRecordingState","fun HmsHlsRecordingState(running: Boolean?, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, error: HMSException?, state: HMSRecordingState)","live.hms.video.sdk.models.HmsHlsRecordingState.HmsHlsRecordingState"]},{"name":"fun HmsPollAnswer(questionId: Int, questionType: HMSPollQuestionType, skipped: Boolean = false, selectedOption: Int = 0, selectedOptions: List? = null, answerText: String = \"\", update: Boolean = false, durationMillis: Long? = null)","description":"live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/-hms-poll-answer.html","searchKeys":["HmsPollAnswer","fun HmsPollAnswer(questionId: Int, questionType: HMSPollQuestionType, skipped: Boolean = false, selectedOption: Int = 0, selectedOptions: List? = null, answerText: String = \"\", update: Boolean = false, durationMillis: Long? = null)","live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer"]},{"name":"fun HmsPollAnswer(r: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/-hms-poll-answer.html","searchKeys":["HmsPollAnswer","fun HmsPollAnswer(r: HMSPollQuestionResponse)","live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer"]},{"name":"fun HmsPollCreationParams(pollId: String? = null, title: String, duration: Long = 0, anonymous: Boolean = false, visibility: Boolean = true, locked: Boolean = false, mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, vote: List? = null, responses: List? = null, category: HmsPollCategory)","description":"live.hms.video.polls.models.HmsPollCreationParams.HmsPollCreationParams","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/-hms-poll-creation-params.html","searchKeys":["HmsPollCreationParams","fun HmsPollCreationParams(pollId: String? = null, title: String, duration: Long = 0, anonymous: Boolean = false, visibility: Boolean = true, locked: Boolean = false, mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, vote: List? = null, responses: List? = null, category: HmsPollCategory)","live.hms.video.polls.models.HmsPollCreationParams.HmsPollCreationParams"]},{"name":"fun HmsPollQuestionContainer(question: HMSPollQuestion, options: List? = question.options, correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.HmsPollQuestionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/-hms-poll-question-container.html","searchKeys":["HmsPollQuestionContainer","fun HmsPollQuestionContainer(question: HMSPollQuestion, options: List? = question.options, correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","live.hms.video.polls.models.question.HmsPollQuestionContainer.HmsPollQuestionContainer"]},{"name":"fun HmsPollQuestionCreation(q: HMSPollQuestion)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/-hms-poll-question-creation.html","searchKeys":["HmsPollQuestionCreation","fun HmsPollQuestionCreation(q: HMSPollQuestion)","live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation"]},{"name":"fun HmsPollQuestionCreation(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 1, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = 1, negative: Boolean = false)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/-hms-poll-question-creation.html","searchKeys":["HmsPollQuestionCreation","fun HmsPollQuestionCreation(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 1, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = 1, negative: Boolean = false)","live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation"]},{"name":"fun HmsPollQuestionSettingContainer(question: HMSPollQuestion)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/-hms-poll-question-setting-container.html","searchKeys":["HmsPollQuestionSettingContainer","fun HmsPollQuestionSettingContainer(question: HMSPollQuestion)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer"]},{"name":"fun HmsPollQuestionSettingContainer(questionContainer: HmsPollQuestionCreation, options: List?, correctAnswer: HMSPollQuestionAnswer?)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/-hms-poll-question-setting-container.html","searchKeys":["HmsPollQuestionSettingContainer","fun HmsPollQuestionSettingContainer(questionContainer: HmsPollQuestionCreation, options: List?, correctAnswer: HMSPollQuestionAnswer?)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer"]},{"name":"fun HmsTranscript(start: Int, end: Int, transcript: String, peerId: String, isFinal: Boolean)","description":"live.hms.video.sdk.transcripts.HmsTranscript.HmsTranscript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/-hms-transcript.html","searchKeys":["HmsTranscript","fun HmsTranscript(start: Int, end: Int, transcript: String, peerId: String, isFinal: Boolean)","live.hms.video.sdk.transcripts.HmsTranscript.HmsTranscript"]},{"name":"fun HmsTranscripts(transcripts: List)","description":"live.hms.video.sdk.transcripts.HmsTranscripts.HmsTranscripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/-hms-transcripts.html","searchKeys":["HmsTranscripts","fun HmsTranscripts(transcripts: List)","live.hms.video.sdk.transcripts.HmsTranscripts.HmsTranscripts"]},{"name":"fun HmsUtilities()","description":"live.hms.video.utils.HmsUtilities.HmsUtilities","location":"lib/live.hms.video.utils/-hms-utilities/-hms-utilities.html","searchKeys":["HmsUtilities","fun HmsUtilities()","live.hms.video.utils.HmsUtilities.HmsUtilities"]},{"name":"fun IceCandidatePair()","description":"live.hms.video.diagnostics.models.IceCandidatePair.IceCandidatePair","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/-ice-candidate-pair.html","searchKeys":["IceCandidatePair","fun IceCandidatePair()","live.hms.video.diagnostics.models.IceCandidatePair.IceCandidatePair"]},{"name":"fun ImageCaptureModel(image: Image, metadata: CaptureResult, orientation: Int?, format: Int)","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.ImageCaptureModel","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/-image-capture-model.html","searchKeys":["ImageCaptureModel","fun ImageCaptureModel(image: Image, metadata: CaptureResult, orientation: Int?, format: Int)","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.ImageCaptureModel"]},{"name":"fun Item(bitrate: Int, frameRate: Int)","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.Item","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/-item.html","searchKeys":["Item","fun Item(bitrate: Int, frameRate: Int)","live.hms.video.media.settings.HMSSimulcastSettings.Item.Item"]},{"name":"fun JSONArray.toList(): List","description":"live.hms.video.utils.toList","location":"lib/live.hms.video.utils/to-list.html","searchKeys":["toList","fun JSONArray.toList(): List","live.hms.video.utils.toList"]},{"name":"fun JSONObject.toMap(): HashMap","description":"live.hms.video.utils.toMap","location":"lib/live.hms.video.utils/to-map.html","searchKeys":["toMap","fun JSONObject.toMap(): HashMap","live.hms.video.utils.toMap"]},{"name":"fun JoinForm(goLiveBtnLabel: String?, joinBtnLabel: String?, joinBtnType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.JoinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/-join-form.html","searchKeys":["JoinForm","fun JoinForm(goLiveBtnLabel: String?, joinBtnLabel: String?, joinBtnType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.JoinForm"]},{"name":"fun LayerParams(rid: String?, scaleResolutionDownBy: Float?, maxBitrate: Int?, maxFramerate: Int?)","description":"live.hms.video.sdk.models.role.LayerParams.LayerParams","location":"lib/live.hms.video.sdk.models.role/-layer-params/-layer-params.html","searchKeys":["LayerParams","fun LayerParams(rid: String?, scaleResolutionDownBy: Float?, maxBitrate: Int?, maxFramerate: Int?)","live.hms.video.sdk.models.role.LayerParams.LayerParams"]},{"name":"fun LayoutRequestOptions(endpoint: String?)","description":"live.hms.video.signal.init.LayoutRequestOptions.LayoutRequestOptions","location":"lib/live.hms.video.signal.init/-layout-request-options/-layout-request-options.html","searchKeys":["LayoutRequestOptions","fun LayoutRequestOptions(endpoint: String?)","live.hms.video.signal.init.LayoutRequestOptions.LayoutRequestOptions"]},{"name":"fun LeaderboardQuestion(questionIndex: Long?, position: Long?, duration: Long?, totalResponse: Long?, correctResponses: Long?, score: Float?, pollPeer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.LeaderboardQuestion.LeaderboardQuestion","location":"lib/live.hms.video.polls.network/-leaderboard-question/-leaderboard-question.html","searchKeys":["LeaderboardQuestion","fun LeaderboardQuestion(questionIndex: Long?, position: Long?, duration: Long?, totalResponse: Long?, correctResponses: Long?, score: Float?, pollPeer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.LeaderboardQuestion.LeaderboardQuestion"]},{"name":"fun Leave()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave.Leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-leave/-leave.html","searchKeys":["Leave","fun Leave()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave.Leave"]},{"name":"fun LocalBinder()","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder.LocalBinder","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/-local-binder.html","searchKeys":["LocalBinder","fun LocalBinder()","live.hms.video.services.HMSScreenCaptureService.LocalBinder.LocalBinder"]},{"name":"fun LocalTrack()","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalTrack","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-track.html","searchKeys":["LocalTrack","fun LocalTrack()","live.hms.video.connection.degredation.Track.LocalTrack.LocalTrack"]},{"name":"fun LogAlarmManager()","description":"live.hms.video.services.LogAlarmManager.LogAlarmManager","location":"lib/live.hms.video.services/-log-alarm-manager/-log-alarm-manager.html","searchKeys":["LogAlarmManager","fun LogAlarmManager()","live.hms.video.services.LogAlarmManager.LogAlarmManager"]},{"name":"fun Logo(url: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.Logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/-logo.html","searchKeys":["Logo","fun Logo(url: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.Logo"]},{"name":"fun MediaServerReport()","description":"live.hms.video.diagnostics.models.MediaServerReport.MediaServerReport","location":"lib/live.hms.video.diagnostics.models/-media-server-report/-media-server-report.html","searchKeys":["MediaServerReport","fun MediaServerReport()","live.hms.video.diagnostics.models.MediaServerReport.MediaServerReport"]},{"name":"fun MicrophoneUtils()","description":"live.hms.video.utils.MicrophoneUtils.MicrophoneUtils","location":"lib/live.hms.video.utils/-microphone-utils/-microphone-utils.html","searchKeys":["MicrophoneUtils","fun MicrophoneUtils()","live.hms.video.utils.MicrophoneUtils.MicrophoneUtils"]},{"name":"fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap)","description":"live.hms.video.signal.init.NetworkHealth.NetworkHealth","location":"lib/live.hms.video.signal.init/-network-health/-network-health.html","searchKeys":["NetworkHealth","fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap)","live.hms.video.signal.init.NetworkHealth.NetworkHealth"]},{"name":"fun NoiseCancellationElement(enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/-noise-cancellation-element.html","searchKeys":["NoiseCancellationElement","fun NoiseCancellationElement(enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.NoiseCancellationElement"]},{"name":"fun NoiseCancellationElement(enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/-noise-cancellation-element.html","searchKeys":["NoiseCancellationElement","fun NoiseCancellationElement(enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.NoiseCancellationElement"]},{"name":"fun NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.NoiseCancellationFactoryImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/-noise-cancellation-factory-impl.html","searchKeys":["NoiseCancellationFactoryImpl","fun NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker)","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.NoiseCancellationFactoryImpl"]},{"name":"fun NoiseCancellationFake(libraryPresent: Boolean, enabledFromDashboard: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.NoiseCancellationFake","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/-noise-cancellation-fake.html","searchKeys":["NoiseCancellationFake","fun NoiseCancellationFake(libraryPresent: Boolean, enabledFromDashboard: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationFake.NoiseCancellationFake"]},{"name":"fun NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.NoiseCancellationImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/-noise-cancellation-impl.html","searchKeys":["NoiseCancellationImpl","fun NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.NoiseCancellationImpl"]},{"name":"fun NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.NoiseCancellationStatusChecker","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/-noise-cancellation-status-checker.html","searchKeys":["NoiseCancellationStatusChecker","fun NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.NoiseCancellationStatusChecker"]},{"name":"fun NotAvailable(reason: String)","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.NotAvailable","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/-not-available.html","searchKeys":["NotAvailable","fun NotAvailable(reason: String)","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.NotAvailable"]},{"name":"fun OfflineAnalyticsPeerInfo()","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.OfflineAnalyticsPeerInfo","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/-offline-analytics-peer-info.html","searchKeys":["OfflineAnalyticsPeerInfo","fun OfflineAnalyticsPeerInfo()","live.hms.video.sdk.OfflineAnalyticsPeerInfo.OfflineAnalyticsPeerInfo"]},{"name":"fun OnStageExp(bringToStageLabel: String?, offStageRoles: List?, onStageRole: String?, removeFromStageLabel: String?, skipPreviewForRoleChange: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.OnStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/-on-stage-exp.html","searchKeys":["OnStageExp","fun OnStageExp(bringToStageLabel: String?, offStageRoles: List?, onStageRole: String?, removeFromStageLabel: String?, skipPreviewForRoleChange: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.OnStageExp"]},{"name":"fun OnTranscriptionError(code: Int?, message: String?)","description":"live.hms.video.sdk.models.OnTranscriptionError.OnTranscriptionError","location":"lib/live.hms.video.sdk.models/-on-transcription-error/-on-transcription-error.html","searchKeys":["OnTranscriptionError","fun OnTranscriptionError(code: Int?, message: String?)","live.hms.video.sdk.models.OnTranscriptionError.OnTranscriptionError"]},{"name":"fun OrientationTools()","description":"live.hms.video.media.capturers.camera.utils.OrientationTools.OrientationTools","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/-orientation-tools.html","searchKeys":["OrientationTools","fun OrientationTools()","live.hms.video.media.capturers.camera.utils.OrientationTools.OrientationTools"]},{"name":"fun PacketLossTracks(ssrc: Long?, packetLoss: Int?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.PacketLossTracks","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/-packet-loss-tracks.html","searchKeys":["PacketLossTracks","fun PacketLossTracks(ssrc: Long?, packetLoss: Int?)","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.PacketLossTracks"]},{"name":"fun ParticipantList()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList.ParticipantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-participant-list/-participant-list.html","searchKeys":["ParticipantList","fun ParticipantList()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList.ParticipantList"]},{"name":"fun Peer(bytesSent: BigInteger?, packetsSent: BigInteger?, bytesReceived: BigInteger?, packetsReceived: BigInteger?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, availableOutgoingBitrate: Double?, availableIncomingBitrate: Double?, timestampUs: Double?)","description":"live.hms.video.connection.degredation.Peer.Peer","location":"lib/live.hms.video.connection.degredation/-peer/-peer.html","searchKeys":["Peer","fun Peer(bytesSent: BigInteger?, packetsSent: BigInteger?, bytesReceived: BigInteger?, packetsReceived: BigInteger?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, availableOutgoingBitrate: Double?, availableIncomingBitrate: Double?, timestampUs: Double?)","live.hms.video.connection.degredation.Peer.Peer"]},{"name":"fun PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","description":"live.hms.video.sdk.models.PeerListIterator.PeerListIterator","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/-peer-list-iterator.html","searchKeys":["PeerListIterator","fun PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","live.hms.video.sdk.models.PeerListIterator.PeerListIterator"]},{"name":"fun PeerListIteratorOptions(byGroupName: String? = null, byRoleName: String? = null, byPeerIds: ArrayList? = null, limit: Int = 10)","description":"live.hms.video.sdk.models.PeerListIteratorOptions.PeerListIteratorOptions","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/-peer-list-iterator-options.html","searchKeys":["PeerListIteratorOptions","fun PeerListIteratorOptions(byGroupName: String? = null, byRoleName: String? = null, byPeerIds: ArrayList? = null, limit: Int = 10)","live.hms.video.sdk.models.PeerListIteratorOptions.PeerListIteratorOptions"]},{"name":"fun PermissionsParams(endRoom: Boolean = false, removeOthers: Boolean = false, unmute: Boolean = false, mute: Boolean = false, changeRole: Boolean = false, browserRecording: Boolean = false, rtmpStreaming: Boolean = false, hlsStreaming: Boolean = false, pollRead: Boolean = false, pollWrite: Boolean = false, whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","description":"live.hms.video.sdk.models.role.PermissionsParams.PermissionsParams","location":"lib/live.hms.video.sdk.models.role/-permissions-params/-permissions-params.html","searchKeys":["PermissionsParams","fun PermissionsParams(endRoom: Boolean = false, removeOthers: Boolean = false, unmute: Boolean = false, mute: Boolean = false, changeRole: Boolean = false, browserRecording: Boolean = false, rtmpStreaming: Boolean = false, hlsStreaming: Boolean = false, pollRead: Boolean = false, pollWrite: Boolean = false, whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","live.hms.video.sdk.models.role.PermissionsParams.PermissionsParams"]},{"name":"fun PollAnswerItem(questionIndex: Int, correct: Boolean, error: HMSException?)","description":"live.hms.video.polls.models.answer.PollAnswerItem.PollAnswerItem","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/-poll-answer-item.html","searchKeys":["PollAnswerItem","fun PollAnswerItem(questionIndex: Int, correct: Boolean, error: HMSException?)","live.hms.video.polls.models.answer.PollAnswerItem.PollAnswerItem"]},{"name":"fun PollAnswerResponse(pollId: String, result: List, version: String)","description":"live.hms.video.polls.models.answer.PollAnswerResponse.PollAnswerResponse","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/-poll-answer-response.html","searchKeys":["PollAnswerResponse","fun PollAnswerResponse(pollId: String, result: List, version: String)","live.hms.video.polls.models.answer.PollAnswerResponse.PollAnswerResponse"]},{"name":"fun PollCreateResponse(pollId: String, version: String)","description":"live.hms.video.polls.network.PollCreateResponse.PollCreateResponse","location":"lib/live.hms.video.polls.network/-poll-create-response/-poll-create-response.html","searchKeys":["PollCreateResponse","fun PollCreateResponse(pollId: String, version: String)","live.hms.video.polls.network.PollCreateResponse.PollCreateResponse"]},{"name":"fun PollGetResponsesReply(pollId: String, version: String, isLast: Boolean, responses: List)","description":"live.hms.video.polls.network.PollGetResponsesReply.PollGetResponsesReply","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/-poll-get-responses-reply.html","searchKeys":["PollGetResponsesReply","fun PollGetResponsesReply(pollId: String, version: String, isLast: Boolean, responses: List)","live.hms.video.polls.network.PollGetResponsesReply.PollGetResponsesReply"]},{"name":"fun PollLeaderboardResponse(entries: List?, summary: HMSPollLeaderboardSummary?, hasNext: Boolean?)","description":"live.hms.video.polls.network.PollLeaderboardResponse.PollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/-poll-leaderboard-response.html","searchKeys":["PollLeaderboardResponse","fun PollLeaderboardResponse(entries: List?, summary: HMSPollLeaderboardSummary?, hasNext: Boolean?)","live.hms.video.polls.network.PollLeaderboardResponse.PollLeaderboardResponse"]},{"name":"fun PollQuestionGetResponse(last: Boolean, pollId: String, version: String, questions: List)","description":"live.hms.video.polls.network.PollQuestionGetResponse.PollQuestionGetResponse","location":"lib/live.hms.video.polls.network/-poll-question-get-response/-poll-question-get-response.html","searchKeys":["PollQuestionGetResponse","fun PollQuestionGetResponse(last: Boolean, pollId: String, version: String, questions: List)","live.hms.video.polls.network.PollQuestionGetResponse.PollQuestionGetResponse"]},{"name":"fun PollResultsDisplay(totalResponses: Long? = null, votingUsers: Long? = null, totalDistinctUsers: Long? = null, questions: List)","description":"live.hms.video.polls.network.PollResultsDisplay.PollResultsDisplay","location":"lib/live.hms.video.polls.network/-poll-results-display/-poll-results-display.html","searchKeys":["PollResultsDisplay","fun PollResultsDisplay(totalResponses: Long? = null, votingUsers: Long? = null, totalDistinctUsers: Long? = null, questions: List)","live.hms.video.polls.network.PollResultsDisplay.PollResultsDisplay"]},{"name":"fun PollResultsItems(questionIndex: Long, correct: Long, type: HMSPollQuestionType, skipped: Long, total: Long, error: HMSException?)","description":"live.hms.video.polls.network.PollResultsItems.PollResultsItems","location":"lib/live.hms.video.polls.network/-poll-results-items/-poll-results-items.html","searchKeys":["PollResultsItems","fun PollResultsItems(questionIndex: Long, correct: Long, type: HMSPollQuestionType, skipped: Long, total: Long, error: HMSException?)","live.hms.video.polls.network.PollResultsItems.PollResultsItems"]},{"name":"fun PollResultsResponse(pollId: String, totalResponses: Long, votingUsers: Long, totalDistinctUsers: Long, question: List)","description":"live.hms.video.polls.network.PollResultsResponse.PollResultsResponse","location":"lib/live.hms.video.polls.network/-poll-results-response/-poll-results-response.html","searchKeys":["PollResultsResponse","fun PollResultsResponse(pollId: String, totalResponses: Long, votingUsers: Long, totalDistinctUsers: Long, question: List)","live.hms.video.polls.network.PollResultsResponse.PollResultsResponse"]},{"name":"fun PollStartRequest(pollId: String, version: String = \"1.0\")","description":"live.hms.video.polls.network.PollStartRequest.PollStartRequest","location":"lib/live.hms.video.polls.network/-poll-start-request/-poll-start-request.html","searchKeys":["PollStartRequest","fun PollStartRequest(pollId: String, version: String = \"1.0\")","live.hms.video.polls.network.PollStartRequest.PollStartRequest"]},{"name":"fun PollStatsQuestions(index: Int, questionType: HMSPollQuestionType, options: List?, correct: Long?, skipped: Long, attemptedTimes: Int)","description":"live.hms.video.polls.models.PollStatsQuestions.PollStatsQuestions","location":"lib/live.hms.video.polls.models/-poll-stats-questions/-poll-stats-questions.html","searchKeys":["PollStatsQuestions","fun PollStatsQuestions(index: Int, questionType: HMSPollQuestionType, options: List?, correct: Long?, skipped: Long, attemptedTimes: Int)","live.hms.video.polls.models.PollStatsQuestions.PollStatsQuestions"]},{"name":"fun PreferLayer(trackId: String, layer: String)","description":"live.hms.video.media.streams.models.PreferLayer.PreferLayer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/-prefer-layer.html","searchKeys":["PreferLayer","fun PreferLayer(trackId: String, layer: String)","live.hms.video.media.streams.models.PreferLayer.PreferLayer"]},{"name":"fun PreferLayerAudio(trackId: String, isSubscribed: Boolean)","description":"live.hms.video.media.streams.models.PreferLayerAudio.PreferLayerAudio","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/-prefer-layer-audio.html","searchKeys":["PreferLayerAudio","fun PreferLayerAudio(trackId: String, isSubscribed: Boolean)","live.hms.video.media.streams.models.PreferLayerAudio.PreferLayerAudio"]},{"name":"fun PreferLayerResponseInfo(trackId: String)","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo.PreferLayerResponseInfo","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/-prefer-layer-response-info.html","searchKeys":["PreferLayerResponseInfo","fun PreferLayerResponseInfo(trackId: String)","live.hms.video.media.streams.models.PreferLayerResponseInfo.PreferLayerResponseInfo"]},{"name":"fun PreferStateResponse(info: PreferLayerResponseInfo)","description":"live.hms.video.media.streams.models.PreferStateResponse.PreferStateResponse","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/-prefer-state-response.html","searchKeys":["PreferStateResponse","fun PreferStateResponse(info: PreferLayerResponseInfo)","live.hms.video.media.streams.models.PreferStateResponse.PreferStateResponse"]},{"name":"fun PreferStateResponseError(code: Int?, message: String?, data: String?)","description":"live.hms.video.media.streams.models.PreferStateResponseError.PreferStateResponseError","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/-prefer-state-response-error.html","searchKeys":["PreferStateResponseError","fun PreferStateResponseError(code: Int?, message: String?, data: String?)","live.hms.video.media.streams.models.PreferStateResponseError.PreferStateResponseError"]},{"name":"fun Preview(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, skipPreview: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-preview.html","searchKeys":["Preview","fun Preview(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, skipPreview: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Preview"]},{"name":"fun PreviewHeader(subTitle: String?, title: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.PreviewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/-preview-header.html","searchKeys":["PreviewHeader","fun PreviewHeader(subTitle: String?, title: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.PreviewHeader"]},{"name":"fun PublishAnalyticPayload(sequenceNumber: Int, maxWindowSecond: Int, joined_at: Long, video: List = emptyList(), audio: List, batteryPercentage: Int)","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.PublishAnalyticPayload","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/-publish-analytic-payload.html","searchKeys":["PublishAnalyticPayload","fun PublishAnalyticPayload(sequenceNumber: Int, maxWindowSecond: Int, joined_at: Long, video: List = emptyList(), audio: List, batteryPercentage: Int)","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.PublishAnalyticPayload"]},{"name":"fun PublishAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String, source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.PublishAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-publish-audio-stats-sampler.html","searchKeys":["PublishAudioStatsSampler","fun PublishAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String, source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.PublishAudioStatsSampler"]},{"name":"fun PublishConnection(bytesSent: BigInteger?, availableOutgoingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsSent: BigInteger?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.PublishConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-publish-connection.html","searchKeys":["PublishConnection","fun PublishConnection(bytesSent: BigInteger?, availableOutgoingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsSent: BigInteger?)","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.PublishConnection"]},{"name":"fun PublishConnection(bytesSent: Long = 0, availableOutgoingBitrates: MutableList = mutableListOf(), packetsSent: Long = 0, packetLoss: Long = 0)","description":"live.hms.video.sdk.PublishConnection.PublishConnection","location":"lib/live.hms.video.sdk/-publish-connection/-publish-connection.html","searchKeys":["PublishConnection","fun PublishConnection(bytesSent: Long = 0, availableOutgoingBitrates: MutableList = mutableListOf(), packetsSent: Long = 0, packetLoss: Long = 0)","live.hms.video.sdk.PublishConnection.PublishConnection"]},{"name":"fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList = arrayListOf(), simulcast: Simulcast?)","description":"live.hms.video.sdk.models.role.PublishParams.PublishParams","location":"lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html","searchKeys":["PublishParams","fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList = arrayListOf(), simulcast: Simulcast?)","live.hms.video.sdk.models.role.PublishParams.PublishParams"]},{"name":"fun PublishVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, rid: String?, ssrc: String, source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.PublishVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-publish-video-stats-sampler.html","searchKeys":["PublishVideoStatsSampler","fun PublishVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, rid: String?, ssrc: String, source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.PublishVideoStatsSampler"]},{"name":"fun QualityLimitation(bandwidthMs: Float, cpuMs: Float)","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.QualityLimitation","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/-quality-limitation.html","searchKeys":["QualityLimitation","fun QualityLimitation(bandwidthMs: Float, cpuMs: Float)","live.hms.video.connection.stats.clientside.model.QualityLimitation.QualityLimitation"]},{"name":"fun QualityLimitationReasons(stringReason: String? = null, bandWidth: Double? = null, cpu: Double? = null, none: Double? = null, other: Double? = null, qualityLimitationResolutionChanges: Long? = null)","description":"live.hms.video.connection.degredation.QualityLimitationReasons.QualityLimitationReasons","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/-quality-limitation-reasons.html","searchKeys":["QualityLimitationReasons","fun QualityLimitationReasons(stringReason: String? = null, bandWidth: Double? = null, cpu: Double? = null, none: Double? = null, other: Double? = null, qualityLimitationResolutionChanges: Long? = null)","live.hms.video.connection.degredation.QualityLimitationReasons.QualityLimitationReasons"]},{"name":"fun QuestionContainer(questions: List? = null, error: Throwable? = null)","description":"live.hms.video.polls.network.QuestionContainer.QuestionContainer","location":"lib/live.hms.video.polls.network/-question-container/-question-container.html","searchKeys":["QuestionContainer","fun QuestionContainer(questions: List? = null, error: Throwable? = null)","live.hms.video.polls.network.QuestionContainer.QuestionContainer"]},{"name":"fun RangeLimits(low: Long, high: Long)","description":"live.hms.video.signal.init.RangeLimits.RangeLimits","location":"lib/live.hms.video.signal.init/-range-limits/-range-limits.html","searchKeys":["RangeLimits","fun RangeLimits(low: Long, high: Long)","live.hms.video.signal.init.RangeLimits.RangeLimits"]},{"name":"fun RealTimeControls(canDisableChat: Boolean, canBlockUser: Boolean, canHideMessage: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.RealTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/-real-time-controls.html","searchKeys":["RealTimeControls","fun RealTimeControls(canDisableChat: Boolean, canBlockUser: Boolean, canHideMessage: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.RealTimeControls"]},{"name":"fun Recording(sfu: Sfu?, browser: Browser?, hls: Hls?)","description":"live.hms.video.sdk.peerlist.models.Recording.Recording","location":"lib/live.hms.video.sdk.peerlist.models/-recording/-recording.html","searchKeys":["Recording","fun Recording(sfu: Sfu?, browser: Browser?, hls: Hls?)","live.hms.video.sdk.peerlist.models.Recording.Recording"]},{"name":"fun RemoteTrack()","description":"live.hms.video.connection.degredation.RemoteTrack.RemoteTrack","location":"lib/live.hms.video.connection.degredation/-remote-track/-remote-track.html","searchKeys":["RemoteTrack","fun RemoteTrack()","live.hms.video.connection.degredation.RemoteTrack.RemoteTrack"]},{"name":"fun Result(mode: TranscriptionsMode?)","description":"live.hms.video.sdk.models.Result.Result","location":"lib/live.hms.video.sdk.models/-result/-result.html","searchKeys":["Result","fun Result(mode: TranscriptionsMode?)","live.hms.video.sdk.models.Result.Result"]},{"name":"fun RpcRequestWrapper(method: String, params: HMSDataChannelRequestParams, id: String = IdHelper.makeCallSignalId(), jsonRpc: String = \"2.0\")","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.RpcRequestWrapper","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/-rpc-request-wrapper.html","searchKeys":["RpcRequestWrapper","fun RpcRequestWrapper(method: String, params: HMSDataChannelRequestParams, id: String = IdHelper.makeCallSignalId(), jsonRpc: String = \"2.0\")","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.RpcRequestWrapper"]},{"name":"fun SafeVariable()","description":"live.hms.video.factories.SafeVariable.SafeVariable","location":"lib/live.hms.video.factories/-safe-variable/-safe-variable.html","searchKeys":["SafeVariable","fun SafeVariable()","live.hms.video.factories.SafeVariable.SafeVariable"]},{"name":"fun Screens(conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-screens.html","searchKeys":["Screens","fun Screens(conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Screens"]},{"name":"fun ServerConfiguration(enabledFlags: List?, networkHealth: NetworkHealth?, publishStats: Stats?, subscribeStats: Stats?, vb: VB?)","description":"live.hms.video.signal.init.ServerConfiguration.ServerConfiguration","location":"lib/live.hms.video.signal.init/-server-configuration/-server-configuration.html","searchKeys":["ServerConfiguration","fun ServerConfiguration(enabledFlags: List?, networkHealth: NetworkHealth?, publishStats: Stats?, subscribeStats: Stats?, vb: VB?)","live.hms.video.signal.init.ServerConfiguration.ServerConfiguration"]},{"name":"fun SetQuestionsResponse(pollId: String, totalQuestions: Int, version: String)","description":"live.hms.video.polls.network.SetQuestionsResponse.SetQuestionsResponse","location":"lib/live.hms.video.polls.network/-set-questions-response/-set-questions-response.html","searchKeys":["SetQuestionsResponse","fun SetQuestionsResponse(pollId: String, totalQuestions: Int, version: String)","live.hms.video.polls.network.SetQuestionsResponse.SetQuestionsResponse"]},{"name":"fun Sfu(enabled: Boolean, startedAt: Long?, initialisedAt: Long?, updatedAt: Long?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Sfu.Sfu","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/-sfu.html","searchKeys":["Sfu","fun Sfu(enabled: Boolean, startedAt: Long?, initialisedAt: Long?, updatedAt: Long?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Sfu.Sfu"]},{"name":"fun ShortCodeInput(token: String, userId: String?)","description":"live.hms.video.signal.init.ShortCodeInput.ShortCodeInput","location":"lib/live.hms.video.signal.init/-short-code-input/-short-code-input.html","searchKeys":["ShortCodeInput","fun ShortCodeInput(token: String, userId: String?)","live.hms.video.signal.init.ShortCodeInput.ShortCodeInput"]},{"name":"fun SignallingReport()","description":"live.hms.video.diagnostics.models.SignallingReport.SignallingReport","location":"lib/live.hms.video.diagnostics.models/-signalling-report/-signalling-report.html","searchKeys":["SignallingReport","fun SignallingReport()","live.hms.video.diagnostics.models.SignallingReport.SignallingReport"]},{"name":"fun SignatureChecker(applicationContext: Context)","description":"live.hms.video.sdk.SignatureChecker.SignatureChecker","location":"lib/live.hms.video.sdk/-signature-checker/-signature-checker.html","searchKeys":["SignatureChecker","fun SignatureChecker(applicationContext: Context)","live.hms.video.sdk.SignatureChecker.SignatureChecker"]},{"name":"fun Simulcast(video: VideoSimulcastLayersParams?, screen: VideoSimulcastLayersParams?)","description":"live.hms.video.sdk.models.role.Simulcast.Simulcast","location":"lib/live.hms.video.sdk.models.role/-simulcast/-simulcast.html","searchKeys":["Simulcast","fun Simulcast(video: VideoSimulcastLayersParams?, screen: VideoSimulcastLayersParams?)","live.hms.video.sdk.models.role.Simulcast.Simulcast"]},{"name":"fun SingleResponse(peer: HMSPollResponsePeerInfo, finalAnswer: Boolean, response: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.network.SingleResponse.SingleResponse","location":"lib/live.hms.video.polls.models.network/-single-response/-single-response.html","searchKeys":["SingleResponse","fun SingleResponse(peer: HMSPollResponsePeerInfo, finalAnswer: Boolean, response: HMSPollQuestionResponse)","live.hms.video.polls.models.network.SingleResponse.SingleResponse"]},{"name":"fun Size(width: Int, height: Int)","description":"live.hms.video.connection.stats.clientside.model.Size.Size","location":"lib/live.hms.video.connection.stats.clientside.model/-size/-size.html","searchKeys":["Size","fun Size(width: Int, height: Int)","live.hms.video.connection.stats.clientside.model.Size.Size"]},{"name":"fun SpeedTest()","description":"live.hms.video.sdk.SpeedTest.SpeedTest","location":"lib/live.hms.video.sdk/-speed-test/-speed-test.html","searchKeys":["SpeedTest","fun SpeedTest()","live.hms.video.sdk.SpeedTest.SpeedTest"]},{"name":"fun Start(hmsWhiteboard: HMSWhiteboard)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.Start","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/-start.html","searchKeys":["Start","fun Start(hmsWhiteboard: HMSWhiteboard)","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.Start"]},{"name":"fun Stats(maxSampleWindowSize: Float?, maxSamplePushInterval: Float?)","description":"live.hms.video.signal.init.Stats.Stats","location":"lib/live.hms.video.signal.init/-stats/-stats.html","searchKeys":["Stats","fun Stats(maxSampleWindowSize: Float?, maxSamplePushInterval: Float?)","live.hms.video.signal.init.Stats.Stats"]},{"name":"fun StatsBundle(packetLoss: Long, allStats: Map, totalPackets: Long, packetLossTracks: MutableMap)","description":"live.hms.video.connection.degredation.StatsBundle.StatsBundle","location":"lib/live.hms.video.connection.degredation/-stats-bundle/-stats-bundle.html","searchKeys":["StatsBundle","fun StatsBundle(packetLoss: Long, allStats: Map, totalPackets: Long, packetLossTracks: MutableMap)","live.hms.video.connection.degredation.StatsBundle.StatsBundle"]},{"name":"fun Stop(hmsWhiteboard: HMSWhiteboard)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.Stop","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/-stop.html","searchKeys":["Stop","fun Stop(hmsWhiteboard: HMSWhiteboard)","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.Stop"]},{"name":"fun SubscribeAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SubscribeAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-subscribe-audio-stats-sampler.html","searchKeys":["SubscribeAudioStatsSampler","fun SubscribeAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SubscribeAudioStatsSampler"]},{"name":"fun SubscribeConnection(bytesReceived: BigInteger?, availableIncomingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsReceived: BigInteger?)","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.SubscribeConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-subscribe-connection.html","searchKeys":["SubscribeConnection","fun SubscribeConnection(bytesReceived: BigInteger?, availableIncomingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsReceived: BigInteger?)","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.SubscribeConnection"]},{"name":"fun SubscribeConnection(bytesReceived: Long = 0, availableIncomingBitrates: MutableList = mutableListOf(), packetsReceived: Long = 0, packetLoss: Long = 0)","description":"live.hms.video.sdk.SubscribeConnection.SubscribeConnection","location":"lib/live.hms.video.sdk/-subscribe-connection/-subscribe-connection.html","searchKeys":["SubscribeConnection","fun SubscribeConnection(bytesReceived: Long = 0, availableIncomingBitrates: MutableList = mutableListOf(), packetsReceived: Long = 0, packetLoss: Long = 0)","live.hms.video.sdk.SubscribeConnection.SubscribeConnection"]},{"name":"fun SubscribeDegradationParams(packetLossThreshold: Long, degradeGracePeriodSeconds: Long, recoverGracePeriodSeconds: Long)","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.SubscribeDegradationParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/-subscribe-degradation-params.html","searchKeys":["SubscribeDegradationParams","fun SubscribeDegradationParams(packetLossThreshold: Long, degradeGracePeriodSeconds: Long, recoverGracePeriodSeconds: Long)","live.hms.video.sdk.models.role.SubscribeDegradationParams.SubscribeDegradationParams"]},{"name":"fun SubscribeParams(subscribeTo: ArrayList?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)","description":"live.hms.video.sdk.models.role.SubscribeParams.SubscribeParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html","searchKeys":["SubscribeParams","fun SubscribeParams(subscribeTo: ArrayList?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)","live.hms.video.sdk.models.role.SubscribeParams.SubscribeParams"]},{"name":"fun SubscribeVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SubscribeVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-subscribe-video-stats-sampler.html","searchKeys":["SubscribeVideoStatsSampler","fun SubscribeVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SubscribeVideoStatsSampler"]},{"name":"fun TokenRequest(roomCode: String, userId: String? = null)","description":"live.hms.video.signal.init.TokenRequest.TokenRequest","location":"lib/live.hms.video.signal.init/-token-request/-token-request.html","searchKeys":["TokenRequest","fun TokenRequest(roomCode: String, userId: String? = null)","live.hms.video.signal.init.TokenRequest.TokenRequest"]},{"name":"fun TokenRequestOptions(endpoint: String?)","description":"live.hms.video.signal.init.TokenRequestOptions.TokenRequestOptions","location":"lib/live.hms.video.signal.init/-token-request-options/-token-request-options.html","searchKeys":["TokenRequestOptions","fun TokenRequestOptions(endpoint: String?)","live.hms.video.signal.init.TokenRequestOptions.TokenRequestOptions"]},{"name":"fun TokenResult(token: String?, expiresAt: String?)","description":"live.hms.video.signal.init.TokenResult.TokenResult","location":"lib/live.hms.video.signal.init/-token-result/-token-result.html","searchKeys":["TokenResult","fun TokenResult(token: String?, expiresAt: String?)","live.hms.video.signal.init.TokenResult.TokenResult"]},{"name":"fun TranscriptionStartResponse(result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStartResponse.TranscriptionStartResponse","location":"lib/live.hms.video.sdk.models/-transcription-start-response/-transcription-start-response.html","searchKeys":["TranscriptionStartResponse","fun TranscriptionStartResponse(result: Result?)","live.hms.video.sdk.models.TranscriptionStartResponse.TranscriptionStartResponse"]},{"name":"fun TranscriptionStopResponse(result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStopResponse.TranscriptionStopResponse","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/-transcription-stop-response.html","searchKeys":["TranscriptionStopResponse","fun TranscriptionStopResponse(result: Result?)","live.hms.video.sdk.models.TranscriptionStopResponse.TranscriptionStopResponse"]},{"name":"fun Transcriptions()","description":"live.hms.video.sdk.models.Transcriptions.Transcriptions","location":"lib/live.hms.video.sdk.models/-transcriptions/-transcriptions.html","searchKeys":["Transcriptions","fun Transcriptions()","live.hms.video.sdk.models.Transcriptions.Transcriptions"]},{"name":"fun TypeConverter()","description":"live.hms.video.database.converters.TypeConverter.TypeConverter","location":"lib/live.hms.video.database.converters/-type-converter/-type-converter.html","searchKeys":["TypeConverter","fun TypeConverter()","live.hms.video.database.converters.TypeConverter.TypeConverter"]},{"name":"fun TypoGraphy(fontFamily: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.TypoGraphy","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/-typo-graphy.html","searchKeys":["TypoGraphy","fun TypoGraphy(fontFamily: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.TypoGraphy"]},{"name":"fun VB(effectsKey: String?)","description":"live.hms.video.signal.init.VB.VB","location":"lib/live.hms.video.signal.init/-v-b/-v-b.html","searchKeys":["VB","fun VB(effectsKey: String?)","live.hms.video.signal.init.VB.VB"]},{"name":"fun VideoAnalytics(rid: String?, videoSamples: List, trackId: String, ssrc: String, source: String)","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.VideoAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/-video-analytics.html","searchKeys":["VideoAnalytics","fun VideoAnalytics(rid: String?, videoSamples: List, trackId: String, ssrc: String, source: String)","live.hms.video.connection.stats.clientside.model.VideoAnalytics.VideoAnalytics"]},{"name":"fun VideoInputDeviceReport()","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport.VideoInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/-video-input-device-report.html","searchKeys":["VideoInputDeviceReport","fun VideoInputDeviceReport()","live.hms.video.diagnostics.models.VideoInputDeviceReport.VideoInputDeviceReport"]},{"name":"fun VideoParams(bitRate: Int, codec: HMSVideoCodec, frameRate: Int, width: Int, height: Int)","description":"live.hms.video.sdk.models.role.VideoParams.VideoParams","location":"lib/live.hms.video.sdk.models.role/-video-params/-video-params.html","searchKeys":["VideoParams","fun VideoParams(bitRate: Int, codec: HMSVideoCodec, frameRate: Int, width: Int, height: Int)","live.hms.video.sdk.models.role.VideoParams.VideoParams"]},{"name":"fun VideoSamplesPublish(total_quality_limitation: QualityLimitation, avg_fps: Int, resolution: Size, timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long, totalPacketSendDelay: Double, packetsSent: Long)","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.VideoSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/-video-samples-publish.html","searchKeys":["VideoSamplesPublish","fun VideoSamplesPublish(total_quality_limitation: QualityLimitation, avg_fps: Int, resolution: Size, timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long, totalPacketSendDelay: Double, packetsSent: Long)","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.VideoSamplesPublish"]},{"name":"fun VideoSamplesSubscribe(timestamp: Long, avg_frames_received_per_sec: Float, avg_frames_dropped_per_sec: Float, avg_frames_decoded_per_sec: Float, total_pli_count: Int, total_nack_count: Int, avg_av_sync_ms: Int, frame_width: Int, frame_height: Int, pause_count: Int, pause_duration_seconds: Float, freeze_count: Int, freeze_duration_seconds: Float, avg_jitter_buffer_delay: Float)","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.VideoSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/-video-samples-subscribe.html","searchKeys":["VideoSamplesSubscribe","fun VideoSamplesSubscribe(timestamp: Long, avg_frames_received_per_sec: Float, avg_frames_dropped_per_sec: Float, avg_frames_decoded_per_sec: Float, total_pli_count: Int, total_nack_count: Int, avg_av_sync_ms: Int, frame_width: Int, frame_height: Int, pause_count: Int, pause_duration_seconds: Float, freeze_count: Int, freeze_duration_seconds: Float, avg_jitter_buffer_delay: Float)","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.VideoSamplesSubscribe"]},{"name":"fun VideoSimulcastLayersParams(layers: ArrayList?)","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams.VideoSimulcastLayersParams","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/-video-simulcast-layers-params.html","searchKeys":["VideoSimulcastLayersParams","fun VideoSimulcastLayersParams(layers: ArrayList?)","live.hms.video.sdk.models.role.VideoSimulcastLayersParams.VideoSimulcastLayersParams"]},{"name":"fun VideoTileLayout(grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.VideoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-video-tile-layout.html","searchKeys":["VideoTileLayout","fun VideoTileLayout(grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.VideoTileLayout"]},{"name":"fun WertcAudioUtils()","description":"live.hms.video.utils.WertcAudioUtils.WertcAudioUtils","location":"lib/live.hms.video.utils/-wertc-audio-utils/-wertc-audio-utils.html","searchKeys":["WertcAudioUtils","fun WertcAudioUtils()","live.hms.video.utils.WertcAudioUtils.WertcAudioUtils"]},{"name":"fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.YuvByteBuffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html","searchKeys":["YuvByteBuffer","fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.YuvByteBuffer"]},{"name":"fun YuvToRgbConverter(context: Context)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.YuvToRgbConverter","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/-yuv-to-rgb-converter.html","searchKeys":["YuvToRgbConverter","fun YuvToRgbConverter(context: Context)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.YuvToRgbConverter"]},{"name":"fun acceptChangeRole(request: HMSRoleChangeRequest, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.acceptChangeRole","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/accept-change-role.html","searchKeys":["acceptChangeRole","fun acceptChangeRole(request: HMSRoleChangeRequest, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.acceptChangeRole"]},{"name":"fun add(audioLevel: Double, audioConcealedSamples: Long, audioTotalSampleReceived: Number, audioConcealmentEvents: Number, fecPacketDiscarded: Number, fecPacketReceived: Number, totalSampleDuration: Float, totalPacketReceived: Long, totalPacketLost: Long, jitterBufferDelay: Double, jitterBufferEmittedCount: Number)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/add.html","searchKeys":["add","fun add(audioLevel: Double, audioConcealedSamples: Long, audioTotalSampleReceived: Number, audioConcealmentEvents: Number, fecPacketDiscarded: Number, fecPacketReceived: Number, totalSampleDuration: Float, totalPacketReceived: Long, totalPacketLost: Long, jitterBufferDelay: Double, jitterBufferEmittedCount: Number)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.add"]},{"name":"fun add(availableOutgoingBitrate: Double, bitRate: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/add.html","searchKeys":["add","fun add(availableOutgoingBitrate: Double, bitRate: Double)","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add"]},{"name":"fun add(framesReceived: Int, framesDropped: Long, framesDecoded: Long, pliCount: Number, nackCount: Number, frameWidth: Number, frameHeight: Number, jitterBufferEmittedCount: Number, jitterBufferDelay: Double)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(framesReceived: Int, framesDropped: Long, framesDecoded: Long, pliCount: Number, nackCount: Number, frameWidth: Number, frameHeight: Number, jitterBufferEmittedCount: Number, jitterBufferDelay: Double)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/add.html","searchKeys":["add","fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add"]},{"name":"fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/add.html","searchKeys":["add","fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add"]},{"name":"fun add(pauseCount: Long, freezeCount: Long, totalPausesDuration: Double, totalFreezesDuration: Double)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(pauseCount: Long, freezeCount: Long, totalPausesDuration: Double, totalFreezesDuration: Double)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(response: HMSPollResponseBuilder, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.add","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/add.html","searchKeys":["add","fun add(response: HMSPollResponseBuilder, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.add"]},{"name":"fun add(videoEstimatedPlayoutTimestamp: Double, peer: HMSPeer?, getAudioStats: (String) -> RTCStats?)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(videoEstimatedPlayoutTimestamp: Double, peer: HMSPeer?, getAudioStats: (String) -> RTCStats?)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(width: Int?, height: Int?, qualityReasons: QualityLimitationReasons, availableOutgoingBitrate: Double, fps: Int, trackId: String, bitRate: Double, totalPacketSendDelay: Double, packetsSent: Long, timestamp: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/add.html","searchKeys":["add","fun add(width: Int?, height: Int?, qualityReasons: QualityLimitationReasons, availableOutgoingBitrate: Double, fps: Int, trackId: String, bitRate: Double, totalPacketSendDelay: Double, packetsSent: Long, timestamp: Double)","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add"]},{"name":"fun addAudioObserver(observer: HMSAudioListener)","description":"live.hms.video.sdk.HMSSDK.addAudioObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-audio-observer.html","searchKeys":["addAudioObserver","fun addAudioObserver(observer: HMSAudioListener)","live.hms.video.sdk.HMSSDK.addAudioObserver"]},{"name":"fun addKeyChangeListener(forKeys: List, keyChangeListener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sessionstore.HmsSessionStore.addKeyChangeListener","location":"lib/live.hms.video.sessionstore/-hms-session-store/add-key-change-listener.html","searchKeys":["addKeyChangeListener","fun addKeyChangeListener(forKeys: List, keyChangeListener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sessionstore.HmsSessionStore.addKeyChangeListener"]},{"name":"fun addLongAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addLongAnswerQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-long-answer-question.html","searchKeys":["addLongAnswerQuestion","fun addLongAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addLongAnswerQuestion"]},{"name":"fun addOption(option: String): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.addOption","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/add-option.html","searchKeys":["addOption","fun addOption(option: String): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.addOption"]},{"name":"fun addPlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener, pluginFrameRate: Int = 15)","description":"live.hms.video.sdk.HMSSDK.addPlugin","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-plugin.html","searchKeys":["addPlugin","fun addPlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener, pluginFrameRate: Int = 15)","live.hms.video.sdk.HMSSDK.addPlugin"]},{"name":"fun addQuestion(withBuilder: HMSPollQuestionBuilder): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-question.html","searchKeys":["addQuestion","fun addQuestion(withBuilder: HMSPollQuestionBuilder): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addQuestion"]},{"name":"fun addQuizOption(option: String, isCorrect: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.addQuizOption","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/add-quiz-option.html","searchKeys":["addQuizOption","fun addQuizOption(option: String, isCorrect: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.addQuizOption"]},{"name":"fun addResponse(forOpenQuestion: HMSPollQuestion, text: String, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forOpenQuestion: HMSPollQuestion, text: String, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addResponse(forQuestion: HMSPollQuestion, option: HMSPollQuestionOption, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forQuestion: HMSPollQuestion, option: HMSPollQuestionOption, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addResponse(forQuestion: HMSPollQuestion, options: List, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forQuestion: HMSPollQuestion, options: List, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addRtcStatsObserver(observer: HMSStatsObserver)","description":"live.hms.video.sdk.HMSSDK.addRtcStatsObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-rtc-stats-observer.html","searchKeys":["addRtcStatsObserver","fun addRtcStatsObserver(observer: HMSStatsObserver)","live.hms.video.sdk.HMSSDK.addRtcStatsObserver"]},{"name":"fun addShortAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addShortAnswerQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-short-answer-question.html","searchKeys":["addShortAnswerQuestion","fun addShortAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addShortAnswerQuestion"]},{"name":"fun addSinkInternal(sink: VideoSink, selectedLayer: HMSLayer)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.addSinkInternal","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/add-sink-internal.html","searchKeys":["addSinkInternal","fun addSinkInternal(sink: VideoSink, selectedLayer: HMSLayer)","live.hms.video.media.tracks.HMSRemoteVideoTrack.addSinkInternal"]},{"name":"fun audio(audio: HMSAudioTrackSettings?): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.audio","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/audio.html","searchKeys":["audio","fun audio(audio: HMSAudioTrackSettings?): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.audio"]},{"name":"fun build(): Bitmap","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.build","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/build.html","searchKeys":["build","fun build(): Bitmap","live.hms.video.media.capturers.camera.utils.BitMatrix.build"]},{"name":"fun build(): HMSAudioTrackSettings","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSAudioTrackSettings","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.build"]},{"name":"fun build(): HMSPollBuilder","description":"live.hms.video.polls.HMSPollBuilder.Builder.build","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/build.html","searchKeys":["build","fun build(): HMSPollBuilder","live.hms.video.polls.HMSPollBuilder.Builder.build"]},{"name":"fun build(): HMSPollQuestionBuilder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.build","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/build.html","searchKeys":["build","fun build(): HMSPollQuestionBuilder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.build"]},{"name":"fun build(): HMSSDK","description":"live.hms.video.sdk.HMSSDK.Builder.build","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/build.html","searchKeys":["build","fun build(): HMSSDK","live.hms.video.sdk.HMSSDK.Builder.build"]},{"name":"fun build(): HMSSimulcastSettings","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/build.html","searchKeys":["build","fun build(): HMSSimulcastSettings","live.hms.video.media.settings.HMSSimulcastSettings.Builder.build"]},{"name":"fun build(): HMSTrackSettings","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSTrackSettings","live.hms.video.media.settings.HMSTrackSettings.Builder.build"]},{"name":"fun build(): HMSVideoTrackSettings","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSVideoTrackSettings","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.build"]},{"name":"fun builder(): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/builder.html","searchKeys":["builder","fun builder(): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.builder"]},{"name":"fun builder(): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/builder.html","searchKeys":["builder","fun builder(): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.builder"]},{"name":"fun cameraFacing(facing: HMSVideoTrackSettings.CameraFacing): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.cameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/camera-facing.html","searchKeys":["cameraFacing","fun cameraFacing(facing: HMSVideoTrackSettings.CameraFacing): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.cameraFacing"]},{"name":"fun cancelPreview()","description":"live.hms.video.sdk.HMSSDK.cancelPreview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/cancel-preview.html","searchKeys":["cancelPreview","fun cancelPreview()","live.hms.video.sdk.HMSSDK.cancelPreview"]},{"name":"fun captureImageAtMaxPublishResolution(videoFrameListener: HmsVideoFrameListener)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.captureImageAtMaxPublishResolution","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/capture-image-at-max-publish-resolution.html","searchKeys":["captureImageAtMaxPublishResolution","fun captureImageAtMaxPublishResolution(videoFrameListener: HmsVideoFrameListener)","live.hms.video.media.tracks.HMSLocalVideoTrack.captureImageAtMaxPublishResolution"]},{"name":"fun captureImageAtMaxResolution(onImageCapture: HmsTypedActionResultListener)","description":"live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxResolution","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-resolution.html","searchKeys":["captureImageAtMaxResolution","fun captureImageAtMaxResolution(onImageCapture: HmsTypedActionResultListener)","live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxResolution"]},{"name":"fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)","description":"live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxSupportedResolution","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html","searchKeys":["captureImageAtMaxSupportedResolution","fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)","live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxSupportedResolution"]},{"name":"fun changeInputFps(fps: Int)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.changeInputFps","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/change-input-fps.html","searchKeys":["changeInputFps","fun changeInputFps(fps: Int)","live.hms.video.media.tracks.HMSLocalVideoTrack.changeInputFps"]},{"name":"fun changeMetadata(metadata: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeMetadata","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-metadata.html","searchKeys":["changeMetadata","fun changeMetadata(metadata: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeMetadata"]},{"name":"fun changeName(name: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeName","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-name.html","searchKeys":["changeName","fun changeName(name: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeName"]},{"name":"fun changeRole(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRole","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role.html","searchKeys":["changeRole","fun changeRole(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRole"]},{"name":"fun changeRoleOfPeer(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRoleOfPeer","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role-of-peer.html","searchKeys":["changeRoleOfPeer","fun changeRoleOfPeer(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRoleOfPeer"]},{"name":"fun changeRoleOfPeersWithRoles(ofRoles: List, toRole: HMSRole, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRoleOfPeersWithRoles","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role-of-peers-with-roles.html","searchKeys":["changeRoleOfPeersWithRoles","fun changeRoleOfPeersWithRoles(ofRoles: List, toRole: HMSRole, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRoleOfPeersWithRoles"]},{"name":"fun changeTrackState(forRemoteTrack: HMSTrack, mute: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeTrackState","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-track-state.html","searchKeys":["changeTrackState","fun changeTrackState(forRemoteTrack: HMSTrack, mute: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeTrackState"]},{"name":"fun changeTrackState(mute: Boolean, type: HMSTrackType?, source: String?, roles: List?, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeTrackState","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-track-state.html","searchKeys":["changeTrackState","fun changeTrackState(mute: Boolean, type: HMSTrackType?, source: String?, roles: List?, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeTrackState"]},{"name":"fun checkDirSizeAndRemove(context: Context)","description":"live.hms.video.utils.LogUtils.checkDirSizeAndRemove","location":"lib/live.hms.video.utils/-log-utils/check-dir-size-and-remove.html","searchKeys":["checkDirSizeAndRemove","fun checkDirSizeAndRemove(context: Context)","live.hms.video.utils.LogUtils.checkDirSizeAndRemove"]},{"name":"fun clearCurrentSampledStats()","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.clearCurrentSampledStats","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/clear-current-sampled-stats.html","searchKeys":["clearCurrentSampledStats","fun clearCurrentSampledStats()","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.clearCurrentSampledStats"]},{"name":"fun clearCurrentSampledStats()","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.clearCurrentSampledStats","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/clear-current-sampled-stats.html","searchKeys":["clearCurrentSampledStats","fun clearCurrentSampledStats()","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.clearCurrentSampledStats"]},{"name":"fun closeLogging()","description":"live.hms.video.utils.LogUtils.closeLogging","location":"lib/live.hms.video.utils/-log-utils/close-logging.html","searchKeys":["closeLogging","fun closeLogging()","live.hms.video.utils.LogUtils.closeLogging"]},{"name":"fun codec(codec: HMSAudioCodec): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.codec","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/codec.html","searchKeys":["codec","fun codec(codec: HMSAudioCodec): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.codec"]},{"name":"fun codec(codec: HMSVideoCodec): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.codec","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/codec.html","searchKeys":["codec","fun codec(codec: HMSVideoCodec): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.codec"]},{"name":"fun correctOrientation(bitmap: Bitmap?, orientation: Int?): Bitmap?","description":"live.hms.video.media.capturers.camera.utils.OrientationTools.correctOrientation","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/correct-orientation.html","searchKeys":["correctOrientation","fun correctOrientation(bitmap: Bitmap?, orientation: Int?): Bitmap?","live.hms.video.media.capturers.camera.utils.OrientationTools.correctOrientation"]},{"name":"fun d(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.d","location":"lib/live.hms.video.utils/-h-m-s-logger/d.html","searchKeys":["d","fun d(tag: String, message: String)","live.hms.video.utils.HMSLogger.d"]},{"name":"fun disableAutoResize(disableAutoResize: Boolean): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.disableAutoResize","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/disable-auto-resize.html","searchKeys":["disableAutoResize","fun disableAutoResize(disableAutoResize: Boolean): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.disableAutoResize"]},{"name":"fun e(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.e","location":"lib/live.hms.video.utils/-h-m-s-logger/e.html","searchKeys":["e","fun e(tag: String, message: String)","live.hms.video.utils.HMSLogger.e"]},{"name":"fun e(tag: String, message: String, tr: Throwable)","description":"live.hms.video.utils.HMSLogger.e","location":"lib/live.hms.video.utils/-h-m-s-logger/e.html","searchKeys":["e","fun e(tag: String, message: String, tr: Throwable)","live.hms.video.utils.HMSLogger.e"]},{"name":"fun enableAutomaticGainControl(enableAutomaticGainControl: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableAutomaticGainControl","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-automatic-gain-control.html","searchKeys":["enableAutomaticGainControl","fun enableAutomaticGainControl(enableAutomaticGainControl: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableAutomaticGainControl"]},{"name":"fun enableEchoCancellation(enableEchoCancellation: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableEchoCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-echo-cancellation.html","searchKeys":["enableEchoCancellation","fun enableEchoCancellation(enableEchoCancellation: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableEchoCancellation"]},{"name":"fun enableIceGatheringOnAnyAddressPorts(enable: Boolean)","description":"live.hms.video.sdk.HMSSDK.Builder.enableIceGatheringOnAnyAddressPorts","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/enable-ice-gathering-on-any-address-ports.html","searchKeys":["enableIceGatheringOnAnyAddressPorts","fun enableIceGatheringOnAnyAddressPorts(enable: Boolean)","live.hms.video.sdk.HMSSDK.Builder.enableIceGatheringOnAnyAddressPorts"]},{"name":"fun enableNoiseCancellation(enable: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.enableNoiseCancellation","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","fun enableNoiseCancellation(enable: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.enableNoiseCancellation"]},{"name":"fun enableNoiseCancellation(enableNoiseCancellation: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","fun enableNoiseCancellation(enableNoiseCancellation: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseCancellation"]},{"name":"fun enableNoiseSupression(enableNoiseSupression: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseSupression","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-noise-supression.html","searchKeys":["enableNoiseSupression","fun enableNoiseSupression(enableNoiseSupression: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseSupression"]},{"name":"fun enableWebrtcNoiseSuppression(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enableWebrtcNoiseSuppression","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/enable-webrtc-noise-suppression.html","searchKeys":["enableWebrtcNoiseSuppression","fun enableWebrtcNoiseSuppression(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enableWebrtcNoiseSuppression"]},{"name":"fun enabledFromDashboard(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enabledFromDashboard","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/enabled-from-dashboard.html","searchKeys":["enabledFromDashboard","fun enabledFromDashboard(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enabledFromDashboard"]},{"name":"fun endRoom(reason: String, lock: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.endRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/end-room.html","searchKeys":["endRoom","fun endRoom(reason: String, lock: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.endRoom"]},{"name":"fun exceptionOrNull(): Throwable?","description":"live.hms.video.polls.network.QuestionContainer.exceptionOrNull","location":"lib/live.hms.video.polls.network/-question-container/exception-or-null.html","searchKeys":["exceptionOrNull","fun exceptionOrNull(): Throwable?","live.hms.video.polls.network.QuestionContainer.exceptionOrNull"]},{"name":"fun fetchLeaderboard(pollId: String, count: Long = 50, startIndex: Long = 0, includeCurrentPeer: Boolean = false, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchLeaderboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-leaderboard.html","searchKeys":["fetchLeaderboard","fun fetchLeaderboard(pollId: String, count: Long = 50, startIndex: Long = 0, includeCurrentPeer: Boolean = false, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.fetchLeaderboard"]},{"name":"fun fetchPollList(pollState: HmsPollState, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchPollList","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-poll-list.html","searchKeys":["fetchPollList","fun fetchPollList(pollState: HmsPollState, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.fetchPollList"]},{"name":"fun fetchPollQuestions(poll: HmsPoll, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchPollQuestions","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-poll-questions.html","searchKeys":["fetchPollQuestions","fun fetchPollQuestions(poll: HmsPoll, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.fetchPollQuestions"]},{"name":"fun flipHorizontally(): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.flipHorizontally","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/flip-horizontally.html","searchKeys":["flipHorizontally","fun flipHorizontally(): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.flipHorizontally"]},{"name":"fun flipVertically(): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.flipVertically","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/flip-vertically.html","searchKeys":["flipVertically","fun flipVertically(): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.flipVertically"]},{"name":"fun forceSoftwareDecoder(forceSoftwareDecoder: Boolean): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.forceSoftwareDecoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","fun forceSoftwareDecoder(forceSoftwareDecoder: Boolean): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.forceSoftwareDecoder"]},{"name":"fun from(audioStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?): Track.LocalTrack.LocalAudio","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion.from","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/-companion/from.html","searchKeys":["from","fun from(audioStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?): Track.LocalTrack.LocalAudio","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion.from"]},{"name":"fun from(audioStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Audio","description":"live.hms.video.connection.degredation.Audio.Companion.from","location":"lib/live.hms.video.connection.degredation/-audio/-companion/from.html","searchKeys":["from","fun from(audioStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Audio","live.hms.video.connection.degredation.Audio.Companion.from"]},{"name":"fun from(publishInfo: RTCStats): ConnectionInfo.PublishConnection","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.from","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/from.html","searchKeys":["from","fun from(publishInfo: RTCStats): ConnectionInfo.PublishConnection","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.from"]},{"name":"fun from(subscribeInfo: RTCStats): ConnectionInfo.SubscribeConnection","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.from","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/from.html","searchKeys":["from","fun from(subscribeInfo: RTCStats): ConnectionInfo.SubscribeConnection","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.from"]},{"name":"fun from(transportInfo: RTCStats, icePairInfo: RTCStats): Peer","description":"live.hms.video.connection.degredation.Peer.Companion.from","location":"lib/live.hms.video.connection.degredation/-peer/-companion/from.html","searchKeys":["from","fun from(transportInfo: RTCStats, icePairInfo: RTCStats): Peer","live.hms.video.connection.degredation.Peer.Companion.from"]},{"name":"fun from(videoStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?): Track.LocalTrack.LocalVideo","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion.from","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html","searchKeys":["from","fun from(videoStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?): Track.LocalTrack.LocalVideo","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion.from"]},{"name":"fun from(videoStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Video","description":"live.hms.video.connection.degredation.Video.Companion.from","location":"lib/live.hms.video.connection.degredation/-video/-companion/from.html","searchKeys":["from","fun from(videoStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Video","live.hms.video.connection.degredation.Video.Companion.from"]},{"name":"fun fromPlatformType(type: Int): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.fromPlatformType","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/from-platform-type.html","searchKeys":["fromPlatformType","fun fromPlatformType(type: Int): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.fromPlatformType"]},{"name":"fun get(key: String = DEFAULT_SESSION_METADATA_KEY, hmsSessionMetadataListener: HMSSessionMetadataListener)","description":"live.hms.video.sessionstore.HmsSessionStore.get","location":"lib/live.hms.video.sessionstore/-hms-session-store/get.html","searchKeys":["get","fun get(key: String = DEFAULT_SESSION_METADATA_KEY, hmsSessionMetadataListener: HMSSessionMetadataListener)","live.hms.video.sessionstore.HmsSessionStore.get"]},{"name":"fun getAllAudioTracks(room: HMSRoom): ArrayList","description":"live.hms.video.utils.HmsUtilities.Companion.getAllAudioTracks","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-all-audio-tracks.html","searchKeys":["getAllAudioTracks","fun getAllAudioTracks(room: HMSRoom): ArrayList","live.hms.video.utils.HmsUtilities.Companion.getAllAudioTracks"]},{"name":"fun getAllEnabledFeatures(): List","description":"live.hms.video.sdk.featureflags.FeatureFlags.getAllEnabledFeatures","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/get-all-enabled-features.html","searchKeys":["getAllEnabledFeatures","fun getAllEnabledFeatures(): List","live.hms.video.sdk.featureflags.FeatureFlags.getAllEnabledFeatures"]},{"name":"fun getAllTracks(): Array","description":"live.hms.video.sdk.models.HMSPeer.getAllTracks","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/get-all-tracks.html","searchKeys":["getAllTracks","fun getAllTracks(): Array","live.hms.video.sdk.models.HMSPeer.getAllTracks"]},{"name":"fun getAllVideoTracks(room: HMSRoom): ArrayList","description":"live.hms.video.utils.HmsUtilities.Companion.getAllVideoTracks","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-all-video-tracks.html","searchKeys":["getAllVideoTracks","fun getAllVideoTracks(room: HMSRoom): ArrayList","live.hms.video.utils.HmsUtilities.Companion.getAllVideoTracks"]},{"name":"fun getAudioDevicesInfoList(): List","description":"live.hms.video.sdk.HMSSDK.getAudioDevicesInfoList","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","fun getAudioDevicesInfoList(): List","live.hms.video.sdk.HMSSDK.getAudioDevicesInfoList"]},{"name":"fun getAudioDevicesList(): List","description":"live.hms.video.sdk.HMSSDK.getAudioDevicesList","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-devices-list.html","searchKeys":["getAudioDevicesList","fun getAudioDevicesList(): List","live.hms.video.sdk.HMSSDK.getAudioDevicesList"]},{"name":"fun getAudioOutputRouteType(): HMSAudioManager.AudioDevice","description":"live.hms.video.sdk.HMSSDK.getAudioOutputRouteType","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-output-route-type.html","searchKeys":["getAudioOutputRouteType","fun getAudioOutputRouteType(): HMSAudioManager.AudioDevice","live.hms.video.sdk.HMSSDK.getAudioOutputRouteType"]},{"name":"fun getAudioTrack(trackId: String, room: HMSRoom): HMSAudioTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getAudioTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-audio-track.html","searchKeys":["getAudioTrack","fun getAudioTrack(trackId: String, room: HMSRoom): HMSAudioTrack?","live.hms.video.utils.HmsUtilities.Companion.getAudioTrack"]},{"name":"fun getAuthTokenByRoomCode(tokenRequest: TokenRequest, tokenRequestOptions: TokenRequestOptions? = null, hmsTokenListener: HMSTokenListener)","description":"live.hms.video.sdk.HMSSDK.getAuthTokenByRoomCode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-auth-token-by-room-code.html","searchKeys":["getAuthTokenByRoomCode","fun getAuthTokenByRoomCode(tokenRequest: TokenRequest, tokenRequestOptions: TokenRequestOptions? = null, hmsTokenListener: HMSTokenListener)","live.hms.video.sdk.HMSSDK.getAuthTokenByRoomCode"]},{"name":"fun getBitmap(context: Context, correctOrientation: Boolean, opts: BitmapFactory.Options? = null): Bitmap?","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.getBitmap","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/get-bitmap.html","searchKeys":["getBitmap","fun getBitmap(context: Context, correctOrientation: Boolean, opts: BitmapFactory.Options? = null): Bitmap?","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.getBitmap"]},{"name":"fun getCameraControl(): CameraControl?","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getCameraControl","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-camera-control.html","searchKeys":["getCameraControl","fun getCameraControl(): CameraControl?","live.hms.video.media.tracks.HMSLocalVideoTrack.getCameraControl"]},{"name":"fun getCollectedSamples(force: Boolean = false): AudioAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(force: Boolean = false): AudioAnalytics","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(force: Boolean = false): VideoAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(force: Boolean = false): VideoAnalytics","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(forcePublish: Boolean): AudioAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(forcePublish: Boolean): AudioAnalytics","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(forcePublish: Boolean): VideoAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(forcePublish: Boolean): VideoAnalytics","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.getCollectedSamples"]},{"name":"fun getDiagnosticsSDK(customerUserId: String?): HMSDiagnostics","description":"live.hms.video.sdk.HMSSDK.getDiagnosticsSDK","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-diagnostics-s-d-k.html","searchKeys":["getDiagnosticsSDK","fun getDiagnosticsSDK(customerUserId: String?): HMSDiagnostics","live.hms.video.sdk.HMSSDK.getDiagnosticsSDK"]},{"name":"fun getDirPath(context: Context): File","description":"live.hms.video.utils.LogUtils.getDirPath","location":"lib/live.hms.video.utils/-log-utils/get-dir-path.html","searchKeys":["getDirPath","fun getDirPath(context: Context): File","live.hms.video.utils.LogUtils.getDirPath"]},{"name":"fun getEquivalentPlatformTypes(audioDevice: AudioManagerUtil.AudioDevice): List","description":"live.hms.video.audio.manager.AudioDeviceMapping.getEquivalentPlatformTypes","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/get-equivalent-platform-types.html","searchKeys":["getEquivalentPlatformTypes","fun getEquivalentPlatformTypes(audioDevice: AudioManagerUtil.AudioDevice): List","live.hms.video.audio.manager.AudioDeviceMapping.getEquivalentPlatformTypes"]},{"name":"fun getHmsInteractivityCenter(): HmsInteractivityCenter","description":"live.hms.video.sdk.HMSSDK.getHmsInteractivityCenter","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-hms-interactivity-center.html","searchKeys":["getHmsInteractivityCenter","fun getHmsInteractivityCenter(): HmsInteractivityCenter","live.hms.video.sdk.HMSSDK.getHmsInteractivityCenter"]},{"name":"fun getInputResolutionAndFps(): Pair","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getInputResolutionAndFps","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-input-resolution-and-fps.html","searchKeys":["getInputResolutionAndFps","fun getInputResolutionAndFps(): Pair","live.hms.video.media.tracks.HMSLocalVideoTrack.getInputResolutionAndFps"]},{"name":"fun getLayer(): HMSLayer","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayer","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/get-layer.html","searchKeys":["getLayer","fun getLayer(): HMSLayer","live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayer"]},{"name":"fun getLayerDefinition(): List","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayerDefinition","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/get-layer-definition.html","searchKeys":["getLayerDefinition","fun getLayerDefinition(): List","live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayerDefinition"]},{"name":"fun getLocalPeer(): HMSLocalPeer?","description":"live.hms.video.sdk.HMSSDK.getLocalPeer","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-local-peer.html","searchKeys":["getLocalPeer","fun getLocalPeer(): HMSLocalPeer?","live.hms.video.sdk.HMSSDK.getLocalPeer"]},{"name":"fun getManualFocusRange(): Range","description":"live.hms.video.media.capturers.camera.CameraControl.getManualFocusRange","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-manual-focus-range.html","searchKeys":["getManualFocusRange","fun getManualFocusRange(): Range","live.hms.video.media.capturers.camera.CameraControl.getManualFocusRange"]},{"name":"fun getMaxZoom(): Float","description":"live.hms.video.media.capturers.camera.CameraControl.getMaxZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-max-zoom.html","searchKeys":["getMaxZoom","fun getMaxZoom(): Float","live.hms.video.media.capturers.camera.CameraControl.getMaxZoom"]},{"name":"fun getMinZoom(): Float","description":"live.hms.video.media.capturers.camera.CameraControl.getMinZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-min-zoom.html","searchKeys":["getMinZoom","fun getMinZoom(): Float","live.hms.video.media.capturers.camera.CameraControl.getMinZoom"]},{"name":"fun getModelStream(context: Context): InputStream","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.getModelStream","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html","searchKeys":["getModelStream","fun getModelStream(context: Context): InputStream","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.getModelStream"]},{"name":"fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.sdk.HMSSDK.getNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","fun getNoiseCancellationEnabled(): Boolean","live.hms.video.sdk.HMSSDK.getNoiseCancellationEnabled"]},{"name":"fun getPeer(peerId: String, room: HMSRoom): HMSPeer?","description":"live.hms.video.utils.HmsUtilities.Companion.getPeer","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-peer.html","searchKeys":["getPeer","fun getPeer(peerId: String, room: HMSRoom): HMSPeer?","live.hms.video.utils.HmsUtilities.Companion.getPeer"]},{"name":"fun getPeerById(peerId: String): HMSPeer?","description":"live.hms.video.sdk.HMSSDK.getPeerById","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peer-by-id.html","searchKeys":["getPeerById","fun getPeerById(peerId: String): HMSPeer?","live.hms.video.sdk.HMSSDK.getPeerById"]},{"name":"fun getPeerListIterator(peerListIteratorOptions: PeerListIteratorOptions? = null): PeerListIterator","description":"live.hms.video.sdk.HMSSDK.getPeerListIterator","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peer-list-iterator.html","searchKeys":["getPeerListIterator","fun getPeerListIterator(peerListIteratorOptions: PeerListIteratorOptions? = null): PeerListIterator","live.hms.video.sdk.HMSSDK.getPeerListIterator"]},{"name":"fun getPeers(): List","description":"live.hms.video.sdk.HMSSDK.getPeers","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peers.html","searchKeys":["getPeers","fun getPeers(): List","live.hms.video.sdk.HMSSDK.getPeers"]},{"name":"fun getPlugins(): List?","description":"live.hms.video.sdk.HMSSDK.getPlugins","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-plugins.html","searchKeys":["getPlugins","fun getPlugins(): List?","live.hms.video.sdk.HMSSDK.getPlugins"]},{"name":"fun getPollResults(poll: HmsPoll, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.getPollResults","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/get-poll-results.html","searchKeys":["getPollResults","fun getPollResults(poll: HmsPoll, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.getPollResults"]},{"name":"fun getRemotePeers(): List","description":"live.hms.video.sdk.HMSSDK.getRemotePeers","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-remote-peers.html","searchKeys":["getRemotePeers","fun getRemotePeers(): List","live.hms.video.sdk.HMSSDK.getRemotePeers"]},{"name":"fun getResponses(poll: HmsPoll, offset: Int = 0, count: Int = 50, ownResponsesOnly: Boolean, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.getResponses","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/get-responses.html","searchKeys":["getResponses","fun getResponses(poll: HmsPoll, offset: Int = 0, count: Int = 50, ownResponsesOnly: Boolean, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.getResponses"]},{"name":"fun getRoles(): List","description":"live.hms.video.sdk.HMSSDK.getRoles","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-roles.html","searchKeys":["getRoles","fun getRoles(): List","live.hms.video.sdk.HMSSDK.getRoles"]},{"name":"fun getRoom(): HMSRoom?","description":"live.hms.video.sdk.HMSSDK.getRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-room.html","searchKeys":["getRoom","fun getRoom(): HMSRoom?","live.hms.video.sdk.HMSSDK.getRoom"]},{"name":"fun getRoomLayout(authToken: String, layoutRequestOptions: LayoutRequestOptions? = null, layoutListener: HMSLayoutListener)","description":"live.hms.video.sdk.HMSSDK.getRoomLayout","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-room-layout.html","searchKeys":["getRoomLayout","fun getRoomLayout(authToken: String, layoutRequestOptions: LayoutRequestOptions? = null, layoutListener: HMSLayoutListener)","live.hms.video.sdk.HMSSDK.getRoomLayout"]},{"name":"fun getSampleRate(audioManager: AudioManager): Int","description":"live.hms.video.utils.WertcAudioUtils.Companion.getSampleRate","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/get-sample-rate.html","searchKeys":["getSampleRate","fun getSampleRate(audioManager: AudioManager): Int","live.hms.video.utils.WertcAudioUtils.Companion.getSampleRate"]},{"name":"fun getSampleRateForApiLevel(audioManager: AudioManager): Int","description":"live.hms.video.utils.WertcAudioUtils.Companion.getSampleRateForApiLevel","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/get-sample-rate-for-api-level.html","searchKeys":["getSampleRateForApiLevel","fun getSampleRateForApiLevel(audioManager: AudioManager): Int","live.hms.video.utils.WertcAudioUtils.Companion.getSampleRateForApiLevel"]},{"name":"fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap): Int","description":"live.hms.video.sdk.SpeedTest.getSpeedTestScore","location":"lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html","searchKeys":["getSpeedTestScore","fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap): Int","live.hms.video.sdk.SpeedTest.getSpeedTestScore"]},{"name":"fun getStopScreenSharePendingIntent(context: Context): PendingIntent","description":"live.hms.video.services.HMSScreenCaptureService.Companion.getStopScreenSharePendingIntent","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/get-stop-screen-share-pending-intent.html","searchKeys":["getStopScreenSharePendingIntent","fun getStopScreenSharePendingIntent(context: Context): PendingIntent","live.hms.video.services.HMSScreenCaptureService.Companion.getStopScreenSharePendingIntent"]},{"name":"fun getSupportedVp8CodecsList(): List","description":"live.hms.video.utils.HmsUtilities.Companion.getSupportedVp8CodecsList","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-supported-vp8-codecs-list.html","searchKeys":["getSupportedVp8CodecsList","fun getSupportedVp8CodecsList(): List","live.hms.video.utils.HmsUtilities.Companion.getSupportedVp8CodecsList"]},{"name":"fun getTextureHelper(): SurfaceTextureHelper","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getTextureHelper","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-texture-helper.html","searchKeys":["getTextureHelper","fun getTextureHelper(): SurfaceTextureHelper","live.hms.video.media.tracks.HMSLocalVideoTrack.getTextureHelper"]},{"name":"fun getTrack(trackId: String, room: HMSRoom): HMSTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-track.html","searchKeys":["getTrack","fun getTrack(trackId: String, room: HMSRoom): HMSTrack?","live.hms.video.utils.HmsUtilities.Companion.getTrack"]},{"name":"fun getTrackById(trackId: String): HMSTrack?","description":"live.hms.video.sdk.models.HMSPeer.getTrackById","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/get-track-by-id.html","searchKeys":["getTrackById","fun getTrackById(trackId: String): HMSTrack?","live.hms.video.sdk.models.HMSPeer.getTrackById"]},{"name":"fun getVideoTrack(trackId: String, room: HMSRoom): HMSVideoTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getVideoTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-video-track.html","searchKeys":["getVideoTrack","fun getVideoTrack(trackId: String, room: HMSRoom): HMSVideoTrack?","live.hms.video.utils.HmsUtilities.Companion.getVideoTrack"]},{"name":"fun getVolume(): Double","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.getVolume","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/get-volume.html","searchKeys":["getVolume","fun getVolume(): Double","live.hms.video.media.tracks.HMSRemoteAudioTrack.getVolume"]},{"name":"fun getWhiteboardPermissions(): HMSWhiteboardPermissions","description":"live.hms.video.sdk.HMSSDK.getWhiteboardPermissions","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-whiteboard-permissions.html","searchKeys":["getWhiteboardPermissions","fun getWhiteboardPermissions(): HMSWhiteboardPermissions","live.hms.video.sdk.HMSSDK.getWhiteboardPermissions"]},{"name":"fun haltPreviewJoinForPermissionsRequest(halt: Boolean): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.haltPreviewJoinForPermissionsRequest","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/halt-preview-join-for-permissions-request.html","searchKeys":["haltPreviewJoinForPermissionsRequest","fun haltPreviewJoinForPermissionsRequest(halt: Boolean): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.haltPreviewJoinForPermissionsRequest"]},{"name":"fun hasBluetoothError(context: Context): BluetoothErrorType?","description":"live.hms.video.audio.BluetoothPermissionHandler.hasBluetoothError","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/has-bluetooth-error.html","searchKeys":["hasBluetoothError","fun hasBluetoothError(context: Context): BluetoothErrorType?","live.hms.video.audio.BluetoothPermissionHandler.hasBluetoothError"]},{"name":"fun hasNext(): Boolean","description":"live.hms.video.sdk.models.PeerListIterator.hasNext","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/has-next.html","searchKeys":["hasNext","fun hasNext(): Boolean","live.hms.video.sdk.models.PeerListIterator.hasNext"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.hasSample"]},{"name":"fun high(high: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.high","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/high.html","searchKeys":["high","fun high(high: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.high"]},{"name":"fun i(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.i","location":"lib/live.hms.video.utils/-h-m-s-logger/i.html","searchKeys":["i","fun i(tag: String, message: String)","live.hms.video.utils.HMSLogger.i"]},{"name":"fun initialState(initialState: HMSTrackSettings.InitState): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/initial-state.html","searchKeys":["initialState","fun initialState(initialState: HMSTrackSettings.InitState): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.initialState"]},{"name":"fun initialState(initialState: HMSTrackSettings.InitState): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/initial-state.html","searchKeys":["initialState","fun initialState(initialState: HMSTrackSettings.InitState): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.initialState"]},{"name":"fun initialize()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.initialize","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/initialize.html","searchKeys":["initialize","fun initialize()","live.hms.video.audio.manager.HMSAudioManagerApi31.initialize"]},{"name":"fun initialize(block: () -> T)","description":"live.hms.video.factories.SafeVariable.initialize","location":"lib/live.hms.video.factories/-safe-variable/initialize.html","searchKeys":["initialize","fun initialize(block: () -> T)","live.hms.video.factories.SafeVariable.initialize"]},{"name":"fun injectLoggable(loggable: HMSLogger.Loggable)","description":"live.hms.video.utils.HMSLogger.injectLoggable","location":"lib/live.hms.video.utils/-h-m-s-logger/inject-loggable.html","searchKeys":["injectLoggable","fun injectLoggable(loggable: HMSLogger.Loggable)","live.hms.video.utils.HMSLogger.injectLoggable"]},{"name":"fun interface BluetoothErrors","description":"live.hms.video.audio.BluetoothErrors","location":"lib/live.hms.video.audio/-bluetooth-errors/index.html","searchKeys":["BluetoothErrors","fun interface BluetoothErrors","live.hms.video.audio.BluetoothErrors"]},{"name":"fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean","description":"live.hms.video.utils.WertcAudioUtils.Companion.isEffectTypeAvailable","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html","searchKeys":["isEffectTypeAvailable","fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean","live.hms.video.utils.WertcAudioUtils.Companion.isEffectTypeAvailable"]},{"name":"fun isFeatureEnabled(feat: Features): Boolean","description":"live.hms.video.sdk.featureflags.FeatureFlags.isFeatureEnabled","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/is-feature-enabled.html","searchKeys":["isFeatureEnabled","fun isFeatureEnabled(feat: Features): Boolean","live.hms.video.sdk.featureflags.FeatureFlags.isFeatureEnabled"]},{"name":"fun isFlashEnabled(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isFlashEnabled","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-flash-enabled.html","searchKeys":["isFlashEnabled","fun isFlashEnabled(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isFlashEnabled"]},{"name":"fun isFlashSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isFlashSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-flash-supported.html","searchKeys":["isFlashSupported","fun isFlashSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isFlashSupported"]},{"name":"fun isManualFocusSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isManualFocusSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-manual-focus-supported.html","searchKeys":["isManualFocusSupported","fun isManualFocusSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isManualFocusSupported"]},{"name":"fun isMicrophoneAccessAvailable(context: Context): Boolean","description":"live.hms.video.utils.MicrophoneUtils.Companion.isMicrophoneAccessAvailable","location":"lib/live.hms.video.utils/-microphone-utils/-companion/is-microphone-access-available.html","searchKeys":["isMicrophoneAccessAvailable","fun isMicrophoneAccessAvailable(context: Context): Boolean","live.hms.video.utils.MicrophoneUtils.Companion.isMicrophoneAccessAvailable"]},{"name":"fun isNoiseCancellationAvailable(): AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.isNoiseCancellationAvailable","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/is-noise-cancellation-available.html","searchKeys":["isNoiseCancellationAvailable","fun isNoiseCancellationAvailable(): AvailabilityStatus","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.isNoiseCancellationAvailable"]},{"name":"fun isNoiseCancellationAvailable(): AvailabilityStatus","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationAvailable","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-available.html","searchKeys":["isNoiseCancellationAvailable","fun isNoiseCancellationAvailable(): AvailabilityStatus","live.hms.video.sdk.HMSSDK.isNoiseCancellationAvailable"]},{"name":"fun isNoiseCancellationEnabled(): Boolean","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-enabled.html","searchKeys":["isNoiseCancellationEnabled","fun isNoiseCancellationEnabled(): Boolean","live.hms.video.sdk.HMSSDK.isNoiseCancellationEnabled"]},{"name":"fun isNoiseCancellationSupported(): AvailabilityStatus","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationSupported","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-supported.html","searchKeys":["isNoiseCancellationSupported","fun isNoiseCancellationSupported(): AvailabilityStatus","live.hms.video.sdk.HMSSDK.isNoiseCancellationSupported"]},{"name":"fun isScreenShared(): Boolean","description":"live.hms.video.sdk.HMSSDK.isScreenShared","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-screen-shared.html","searchKeys":["isScreenShared","fun isScreenShared(): Boolean","live.hms.video.sdk.HMSSDK.isScreenShared"]},{"name":"fun isSoftwareOnly(codecInfo: MediaCodecInfo): Boolean","description":"live.hms.video.utils.HmsUtilities.Companion.isSoftwareOnly","location":"lib/live.hms.video.utils/-hms-utilities/-companion/is-software-only.html","searchKeys":["isSoftwareOnly","fun isSoftwareOnly(codecInfo: MediaCodecInfo): Boolean","live.hms.video.utils.HmsUtilities.Companion.isSoftwareOnly"]},{"name":"fun isTapToFocusSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isTapToFocusSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-tap-to-focus-supported.html","searchKeys":["isTapToFocusSupported","fun isTapToFocusSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isTapToFocusSupported"]},{"name":"fun isValid(): Boolean","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.isValid","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/is-valid.html","searchKeys":["isValid","fun isValid(): Boolean","live.hms.video.sdk.models.role.SubscribeDegradationParams.isValid"]},{"name":"fun isWebrtcPeer(): Boolean","description":"live.hms.video.sdk.models.HMSLocalPeer.isWebrtcPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/is-webrtc-peer.html","searchKeys":["isWebrtcPeer","fun isWebrtcPeer(): Boolean","live.hms.video.sdk.models.HMSLocalPeer.isWebrtcPeer"]},{"name":"fun isZoomSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isZoomSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-zoom-supported.html","searchKeys":["isZoomSupported","fun isZoomSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isZoomSupported"]},{"name":"fun join(config: HMSConfig, hmsUpdateListener: HMSUpdateListener)","description":"live.hms.video.sdk.HMSSDK.join","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/join.html","searchKeys":["join","fun join(config: HMSConfig, hmsUpdateListener: HMSUpdateListener)","live.hms.video.sdk.HMSSDK.join"]},{"name":"fun joined(time: Long = System.currentTimeMillis())","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.joined","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/joined.html","searchKeys":["joined","fun joined(time: Long = System.currentTimeMillis())","live.hms.video.sdk.OfflineAnalyticsPeerInfo.joined"]},{"name":"fun leave(hmsActionResultListener: HMSActionResultListener? = null)","description":"live.hms.video.sdk.HMSSDK.leave","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/leave.html","searchKeys":["leave","fun leave(hmsActionResultListener: HMSActionResultListener? = null)","live.hms.video.sdk.HMSSDK.leave"]},{"name":"fun leave(time: Long = System.currentTimeMillis())","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.leave","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/leave.html","searchKeys":["leave","fun leave(time: Long = System.currentTimeMillis())","live.hms.video.sdk.OfflineAnalyticsPeerInfo.leave"]},{"name":"fun logDeviceInfo(tag: String)","description":"live.hms.video.utils.HMSLogger.logDeviceInfo","location":"lib/live.hms.video.utils/-h-m-s-logger/log-device-info.html","searchKeys":["logDeviceInfo","fun logDeviceInfo(tag: String)","live.hms.video.utils.HMSLogger.logDeviceInfo"]},{"name":"fun low(low: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.low","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/low.html","searchKeys":["low","fun low(low: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.low"]},{"name":"fun lowerLocalPeerHand(actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.lowerLocalPeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/lower-local-peer-hand.html","searchKeys":["lowerLocalPeerHand","fun lowerLocalPeerHand(actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.lowerLocalPeerHand"]},{"name":"fun lowerRemotePeerHand(forPeer: HMSPeer, actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.lowerRemotePeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/lower-remote-peer-hand.html","searchKeys":["lowerRemotePeerHand","fun lowerRemotePeerHand(forPeer: HMSPeer, actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.lowerRemotePeerHand"]},{"name":"fun mapToPollLeaderboardResponse(): PollLeaderboardResponse","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.mapToPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/map-to-poll-leaderboard-response.html","searchKeys":["mapToPollLeaderboardResponse","fun mapToPollLeaderboardResponse(): PollLeaderboardResponse","live.hms.video.polls.network.HMSPollLeaderboardResponse.mapToPollLeaderboardResponse"]},{"name":"fun mapToString(value: HashMap): String","description":"live.hms.video.database.converters.TypeConverter.Companion.mapToString","location":"lib/live.hms.video.database.converters/-type-converter/-companion/map-to-string.html","searchKeys":["mapToString","fun mapToString(value: HashMap): String","live.hms.video.database.converters.TypeConverter.Companion.mapToString"]},{"name":"fun maxBitrate(maxBitRate: Int): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/max-bitrate.html","searchKeys":["maxBitrate","fun maxBitrate(maxBitRate: Int): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.maxBitrate"]},{"name":"fun maxBitrate(maxBitRate: Int): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/max-bitrate.html","searchKeys":["maxBitrate","fun maxBitrate(maxBitRate: Int): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxBitrate"]},{"name":"fun maxFrameRate(maxFrameRate: Int): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxFrameRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/max-frame-rate.html","searchKeys":["maxFrameRate","fun maxFrameRate(maxFrameRate: Int): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxFrameRate"]},{"name":"fun medium(medium: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.medium","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/medium.html","searchKeys":["medium","fun medium(medium: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.medium"]},{"name":"fun next(peerListResultListener: PeerListResultListener)","description":"live.hms.video.sdk.models.PeerListIterator.next","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/next.html","searchKeys":["next","fun next(peerListResultListener: PeerListResultListener)","live.hms.video.sdk.models.PeerListIterator.next"]},{"name":"fun preview(config: HMSConfig, listener: HMSPreviewListener)","description":"live.hms.video.sdk.HMSSDK.preview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/preview.html","searchKeys":["preview","fun preview(config: HMSConfig, listener: HMSPreviewListener)","live.hms.video.sdk.HMSSDK.preview"]},{"name":"fun preview(forRole: HMSRole, rolePreviewListener: RolePreviewListener)","description":"live.hms.video.sdk.HMSSDK.preview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/preview.html","searchKeys":["preview","fun preview(forRole: HMSRole, rolePreviewListener: RolePreviewListener)","live.hms.video.sdk.HMSSDK.preview"]},{"name":"fun quickStartPoll(poll: HMSPollBuilder, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.quickStartPoll","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/quick-start-poll.html","searchKeys":["quickStartPoll","fun quickStartPoll(poll: HMSPollBuilder, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.quickStartPoll"]},{"name":"fun raiseLocalPeerHand(actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.raiseLocalPeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/raise-local-peer-hand.html","searchKeys":["raiseLocalPeerHand","fun raiseLocalPeerHand(actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.raiseLocalPeerHand"]},{"name":"fun removeAudioObserver()","description":"live.hms.video.sdk.HMSSDK.removeAudioObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-audio-observer.html","searchKeys":["removeAudioObserver","fun removeAudioObserver()","live.hms.video.sdk.HMSSDK.removeAudioObserver"]},{"name":"fun removeInjectedLoggable()","description":"live.hms.video.utils.HMSLogger.removeInjectedLoggable","location":"lib/live.hms.video.utils/-h-m-s-logger/remove-injected-loggable.html","searchKeys":["removeInjectedLoggable","fun removeInjectedLoggable()","live.hms.video.utils.HMSLogger.removeInjectedLoggable"]},{"name":"fun removeKeyChangeListener(listener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener? = null): Job","description":"live.hms.video.sessionstore.HmsSessionStore.removeKeyChangeListener","location":"lib/live.hms.video.sessionstore/-hms-session-store/remove-key-change-listener.html","searchKeys":["removeKeyChangeListener","fun removeKeyChangeListener(listener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener? = null): Job","live.hms.video.sessionstore.HmsSessionStore.removeKeyChangeListener"]},{"name":"fun removePeerRequest(peer: HMSRemotePeer, reason: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.removePeerRequest","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-peer-request.html","searchKeys":["removePeerRequest","fun removePeerRequest(peer: HMSRemotePeer, reason: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.removePeerRequest"]},{"name":"fun removePlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.removePlugin","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-plugin.html","searchKeys":["removePlugin","fun removePlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.removePlugin"]},{"name":"fun removeRtcStatsObserver()","description":"live.hms.video.sdk.HMSSDK.removeRtcStatsObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-rtc-stats-observer.html","searchKeys":["removeRtcStatsObserver","fun removeRtcStatsObserver()","live.hms.video.sdk.HMSSDK.removeRtcStatsObserver"]},{"name":"fun removeWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","description":"live.hms.video.interactivity.HmsInteractivityCenter.removeWhiteboardUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/remove-whiteboard-update-listener.html","searchKeys":["removeWhiteboardUpdateListener","fun removeWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","live.hms.video.interactivity.HmsInteractivityCenter.removeWhiteboardUpdateListener"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.resetSamples"]},{"name":"fun resetZoom()","description":"live.hms.video.media.capturers.camera.CameraControl.resetZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/reset-zoom.html","searchKeys":["resetZoom","fun resetZoom()","live.hms.video.media.capturers.camera.CameraControl.resetZoom"]},{"name":"fun resolution(resolution: HMSVideoResolution): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/resolution.html","searchKeys":["resolution","fun resolution(resolution: HMSVideoResolution): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.resolution"]},{"name":"fun rotate(degrees: Float): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.rotate","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/rotate.html","searchKeys":["rotate","fun rotate(degrees: Float): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.rotate"]},{"name":"fun runningOnEmulator(): Boolean","description":"live.hms.video.utils.WertcAudioUtils.Companion.runningOnEmulator","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/running-on-emulator.html","searchKeys":["runningOnEmulator","fun runningOnEmulator(): Boolean","live.hms.video.utils.WertcAudioUtils.Companion.runningOnEmulator"]},{"name":"fun saveLogsToFile(context: Context, filename: String): File","description":"live.hms.video.utils.LogUtils.saveLogsToFile","location":"lib/live.hms.video.utils/-log-utils/save-logs-to-file.html","searchKeys":["saveLogsToFile","fun saveLogsToFile(context: Context, filename: String): File","live.hms.video.utils.LogUtils.saveLogsToFile"]},{"name":"fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","description":"live.hms.video.utils.HMSCoroutineScope.schedule","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule.html","searchKeys":["schedule","fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","live.hms.video.utils.HMSCoroutineScope.schedule"]},{"name":"fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","description":"live.hms.video.utils.HMSCoroutineScope.scheduleWithFixedDelay","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html","searchKeys":["scheduleWithFixedDelay","fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","live.hms.video.utils.HMSCoroutineScope.scheduleWithFixedDelay"]},{"name":"fun scheduleWork(context: Context, dirSize: Long)","description":"live.hms.video.services.LogAlarmManager.scheduleWork","location":"lib/live.hms.video.services/-log-alarm-manager/schedule-work.html","searchKeys":["scheduleWork","fun scheduleWork(context: Context, dirSize: Long)","live.hms.video.services.LogAlarmManager.scheduleWork"]},{"name":"fun searchPeerNameInLargeRoom(query: String, limit: Int, offset: Long, listener: HmsTypedActionResultListener)","description":"live.hms.video.sdk.HMSSDK.searchPeerNameInLargeRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/search-peer-name-in-large-room.html","searchKeys":["searchPeerNameInLargeRoom","fun searchPeerNameInLargeRoom(query: String, limit: Int, offset: Long, listener: HmsTypedActionResultListener)","live.hms.video.sdk.HMSSDK.searchPeerNameInLargeRoom"]},{"name":"fun sendBroadcastMessage(message: String, type: String = HMSMessageType.CHAT, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendBroadcastMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-broadcast-message.html","searchKeys":["sendBroadcastMessage","fun sendBroadcastMessage(message: String, type: String = HMSMessageType.CHAT, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendBroadcastMessage"]},{"name":"fun sendDirectMessage(message: String, type: String = HMSMessageType.CHAT, peerTo: HMSPeer, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendDirectMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-direct-message.html","searchKeys":["sendDirectMessage","fun sendDirectMessage(message: String, type: String = HMSMessageType.CHAT, peerTo: HMSPeer, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendDirectMessage"]},{"name":"fun sendErrorEvent(hmsException: HMSException)","description":"live.hms.video.sdk.HMSSDK.sendErrorEvent","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-error-event.html","searchKeys":["sendErrorEvent","fun sendErrorEvent(hmsException: HMSException)","live.hms.video.sdk.HMSSDK.sendErrorEvent"]},{"name":"fun sendGroupMessage(message: String, type: String = HMSMessageType.CHAT, hmsRolesTo: List, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendGroupMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-group-message.html","searchKeys":["sendGroupMessage","fun sendGroupMessage(message: String, type: String = HMSMessageType.CHAT, hmsRolesTo: List, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendGroupMessage"]},{"name":"fun set(data: Any?, key: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sessionstore.HmsSessionStore.set","location":"lib/live.hms.video.sessionstore/-hms-session-store/set.html","searchKeys":["set","fun set(data: Any?, key: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sessionstore.HmsSessionStore.set"]},{"name":"fun setAnalyticEventLevel(level: HMSAnalyticsEventLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setAnalyticEventLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-analytic-event-level.html","searchKeys":["setAnalyticEventLevel","fun setAnalyticEventLevel(level: HMSAnalyticsEventLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setAnalyticEventLevel"]},{"name":"fun setAudioDeviceChangeListener(audioManageDeviceChangeDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","description":"live.hms.video.sdk.HMSSDK.setAudioDeviceChangeListener","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-device-change-listener.html","searchKeys":["setAudioDeviceChangeListener","fun setAudioDeviceChangeListener(audioManageDeviceChangeDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","live.hms.video.sdk.HMSSDK.setAudioDeviceChangeListener"]},{"name":"fun setAudioMixingMode(audioMixingMode: AudioMixingMode)","description":"live.hms.video.sdk.HMSSDK.setAudioMixingMode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-mixing-mode.html","searchKeys":["setAudioMixingMode","fun setAudioMixingMode(audioMixingMode: AudioMixingMode)","live.hms.video.sdk.HMSSDK.setAudioMixingMode"]},{"name":"fun setAudioMode(audioMode: HMSAudioTrackSettings.HMSAudioMode): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setAudioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-audio-mode.html","searchKeys":["setAudioMode","fun setAudioMode(audioMode: HMSAudioTrackSettings.HMSAudioMode): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setAudioMode"]},{"name":"fun setAudioMode(audioMode: Int)","description":"live.hms.video.sdk.HMSSDK.setAudioMode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-mode.html","searchKeys":["setAudioMode","fun setAudioMode(audioMode: Int)","live.hms.video.sdk.HMSSDK.setAudioMode"]},{"name":"fun setDegradationPreference(degradationPreference: DegradationPreference): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.setDegradationPreference","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/set-degradation-preference.html","searchKeys":["setDegradationPreference","fun setDegradationPreference(degradationPreference: DegradationPreference): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.setDegradationPreference"]},{"name":"fun setDisableInternalAudioManager(disableInternalAudioManager: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setDisableInternalAudioManager","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-disable-internal-audio-manager.html","searchKeys":["setDisableInternalAudioManager","fun setDisableInternalAudioManager(disableInternalAudioManager: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setDisableInternalAudioManager"]},{"name":"fun setFlash(enable: Boolean)","description":"live.hms.video.media.capturers.camera.CameraControl.setFlash","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-flash.html","searchKeys":["setFlash","fun setFlash(enable: Boolean)","live.hms.video.media.capturers.camera.CameraControl.setFlash"]},{"name":"fun setFrameworkInfo(frameworkInfo: FrameworkInfo): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setFrameworkInfo","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-framework-info.html","searchKeys":["setFrameworkInfo","fun setFrameworkInfo(frameworkInfo: FrameworkInfo): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setFrameworkInfo"]},{"name":"fun setHlsSessionMetadata(metadata: List, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.setHlsSessionMetadata","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-hls-session-metadata.html","searchKeys":["setHlsSessionMetadata","fun setHlsSessionMetadata(metadata: List, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.setHlsSessionMetadata"]},{"name":"fun setLayer(HMSLayer: HMSLayer, resultListener: HMSAddSinkResultListener? = null)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.setLayer","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/set-layer.html","searchKeys":["setLayer","fun setLayer(HMSLayer: HMSLayer, resultListener: HMSAddSinkResultListener? = null)","live.hms.video.media.tracks.HMSRemoteVideoTrack.setLayer"]},{"name":"fun setLogLevel(hmsLogLevel: HMSLogger.LogLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-log-level.html","searchKeys":["setLogLevel","fun setLogLevel(hmsLogLevel: HMSLogger.LogLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setLogLevel"]},{"name":"fun setLogSettings(hmsLogSettings: HMSLogSettings): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setLogSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-log-settings.html","searchKeys":["setLogSettings","fun setLogSettings(hmsLogSettings: HMSLogSettings): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setLogSettings"]},{"name":"fun setManualFocus(range: Float)","description":"live.hms.video.media.capturers.camera.CameraControl.setManualFocus","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-manual-focus.html","searchKeys":["setManualFocus","fun setManualFocus(range: Float)","live.hms.video.media.capturers.camera.CameraControl.setManualFocus"]},{"name":"fun setNoiseCancellationEnabled(enable: Boolean)","description":"live.hms.video.sdk.HMSSDK.setNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","fun setNoiseCancellationEnabled(enable: Boolean)","live.hms.video.sdk.HMSSDK.setNoiseCancellationEnabled"]},{"name":"fun setPermissionsAccepted()","description":"live.hms.video.sdk.HMSSDK.setPermissionsAccepted","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-permissions-accepted.html","searchKeys":["setPermissionsAccepted","fun setPermissionsAccepted()","live.hms.video.sdk.HMSSDK.setPermissionsAccepted"]},{"name":"fun setPhoneCallMuteState(phoneCallState: PhoneCallState): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setPhoneCallMuteState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-phone-call-mute-state.html","searchKeys":["setPhoneCallMuteState","fun setPhoneCallMuteState(phoneCallState: PhoneCallState): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setPhoneCallMuteState"]},{"name":"fun setTapToFocusAt(viewX: Float, viewY: Float, viewWidth: Int, viewHeight: Int, scalingType: RendererCommon.ScalingType = ScalingType.SCALE_ASPECT_FILL)","description":"live.hms.video.media.capturers.camera.CameraControl.setTapToFocusAt","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-tap-to-focus-at.html","searchKeys":["setTapToFocusAt","fun setTapToFocusAt(viewX: Float, viewY: Float, viewWidth: Int, viewHeight: Int, scalingType: RendererCommon.ScalingType = ScalingType.SCALE_ASPECT_FILL)","live.hms.video.media.capturers.camera.CameraControl.setTapToFocusAt"]},{"name":"fun setTrackSettings(trackSettings: HMSTrackSettings): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setTrackSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-track-settings.html","searchKeys":["setTrackSettings","fun setTrackSettings(trackSettings: HMSTrackSettings): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setTrackSettings"]},{"name":"fun setUseHardwareAcousticEchoCanceler(useHardwareAcousticEchoCanceler: Boolean?): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setUseHardwareAcousticEchoCanceler","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-use-hardware-acoustic-echo-canceler.html","searchKeys":["setUseHardwareAcousticEchoCanceler","fun setUseHardwareAcousticEchoCanceler(useHardwareAcousticEchoCanceler: Boolean?): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setUseHardwareAcousticEchoCanceler"]},{"name":"fun setVolume(value: Double)","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.setVolume","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/set-volume.html","searchKeys":["setVolume","fun setVolume(value: Double)","live.hms.video.media.tracks.HMSRemoteAudioTrack.setVolume"]},{"name":"fun setWebRtcLogLevel(level: HMSLogger.LogLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setWebRtcLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-web-rtc-log-level.html","searchKeys":["setWebRtcLogLevel","fun setWebRtcLogLevel(level: HMSLogger.LogLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setWebRtcLogLevel"]},{"name":"fun setWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","description":"live.hms.video.interactivity.HmsInteractivityCenter.setWhiteboardUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/set-whiteboard-update-listener.html","searchKeys":["setWhiteboardUpdateListener","fun setWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","live.hms.video.interactivity.HmsInteractivityCenter.setWhiteboardUpdateListener"]},{"name":"fun setZoom(zoomValue: Float)","description":"live.hms.video.media.capturers.camera.CameraControl.setZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-zoom.html","searchKeys":["setZoom","fun setZoom(zoomValue: Float)","live.hms.video.media.capturers.camera.CameraControl.setZoom"]},{"name":"fun shouldSample(currentTimeStamp: Double, force: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, force: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, isForceSample: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, isForceSample: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.shouldSample"]},{"name":"fun shouldSkipPIIEvents(shouldSkip: Boolean): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.shouldSkipPIIEvents","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/should-skip-p-i-i-events.html","searchKeys":["shouldSkipPIIEvents","fun shouldSkipPIIEvents(shouldSkip: Boolean): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.shouldSkipPIIEvents"]},{"name":"fun simulcast(enabled: Boolean): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.simulcast","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/simulcast.html","searchKeys":["simulcast","fun simulcast(enabled: Boolean): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.simulcast"]},{"name":"fun startAudioshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, audioMixingMode: AudioMixingMode = AudioMixingMode.TALK_AND_MUSIC, audioShareNotification: Notification? = null)","description":"live.hms.video.sdk.HMSSDK.startAudioshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-audioshare.html","searchKeys":["startAudioshare","fun startAudioshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, audioMixingMode: AudioMixingMode = AudioMixingMode.TALK_AND_MUSIC, audioShareNotification: Notification? = null)","live.hms.video.sdk.HMSSDK.startAudioshare"]},{"name":"fun startCameraCheck(cameraFacing: HMSVideoTrackSettings.CameraFacing = HMSVideoTrackSettings.CameraFacing.FRONT, listener: HMSCameraCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startCameraCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-camera-check.html","searchKeys":["startCameraCheck","fun startCameraCheck(cameraFacing: HMSVideoTrackSettings.CameraFacing = HMSVideoTrackSettings.CameraFacing.FRONT, listener: HMSCameraCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startCameraCheck"]},{"name":"fun startConnectivityCheck(region: String?, listener: ConnectivityCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startConnectivityCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-connectivity-check.html","searchKeys":["startConnectivityCheck","fun startConnectivityCheck(region: String?, listener: ConnectivityCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startConnectivityCheck"]},{"name":"fun startHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startHLSStreaming","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-h-l-s-streaming.html","searchKeys":["startHLSStreaming","fun startHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startHLSStreaming"]},{"name":"fun startMicCheck(context: Context, listener: HMSAudioDeviceCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startMicCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-mic-check.html","searchKeys":["startMicCheck","fun startMicCheck(context: Context, listener: HMSAudioDeviceCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startMicCheck"]},{"name":"fun startRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startRealTimeTranscription","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-real-time-transcription.html","searchKeys":["startRealTimeTranscription","fun startRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startRealTimeTranscription"]},{"name":"fun startRtmpOrRecording(config: HMSRecordingConfig, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startRtmpOrRecording","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-rtmp-or-recording.html","searchKeys":["startRtmpOrRecording","fun startRtmpOrRecording(config: HMSRecordingConfig, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startRtmpOrRecording"]},{"name":"fun startScreenCapture(mediaProjectionPermissionResultData: Intent?, hmsVideoTrackSettings: HMSVideoTrackSettings, source: VideoSource)","description":"live.hms.video.services.HMSScreenCaptureService.startScreenCapture","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/start-screen-capture.html","searchKeys":["startScreenCapture","fun startScreenCapture(mediaProjectionPermissionResultData: Intent?, hmsVideoTrackSettings: HMSVideoTrackSettings, source: VideoSource)","live.hms.video.services.HMSScreenCaptureService.startScreenCapture"]},{"name":"fun startScreenshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, screenShareNotification: Notification? = null)","description":"live.hms.video.sdk.HMSSDK.startScreenshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-screenshare.html","searchKeys":["startScreenshare","fun startScreenshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, screenShareNotification: Notification? = null)","live.hms.video.sdk.HMSSDK.startScreenshare"]},{"name":"fun startSpeakerCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.startSpeakerCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-speaker-check.html","searchKeys":["startSpeakerCheck","fun startSpeakerCheck()","live.hms.video.diagnostics.HMSDiagnostics.startSpeakerCheck"]},{"name":"fun startWhiteboard(title: String, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.startWhiteboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/start-whiteboard.html","searchKeys":["startWhiteboard","fun startWhiteboard(title: String, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.startWhiteboard"]},{"name":"fun staticFileWriterStart(context: Context, frameworkInfo: FrameworkInfo): String?","description":"live.hms.video.utils.LogUtils.staticFileWriterStart","location":"lib/live.hms.video.utils/-log-utils/static-file-writer-start.html","searchKeys":["staticFileWriterStart","fun staticFileWriterStart(context: Context, frameworkInfo: FrameworkInfo): String?","live.hms.video.utils.LogUtils.staticFileWriterStart"]},{"name":"fun stop()","description":"live.hms.video.media.streams.HMSMediaStream.stop","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/stop.html","searchKeys":["stop","fun stop()","live.hms.video.media.streams.HMSMediaStream.stop"]},{"name":"fun stop(poll: HmsPoll, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.stop","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/stop.html","searchKeys":["stop","fun stop(poll: HmsPoll, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.stop"]},{"name":"fun stopAudioCaptuer()","description":"live.hms.video.services.HMSScreenCaptureService.stopAudioCaptuer","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/stop-audio-captuer.html","searchKeys":["stopAudioCaptuer","fun stopAudioCaptuer()","live.hms.video.services.HMSScreenCaptureService.stopAudioCaptuer"]},{"name":"fun stopAudioshare(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopAudioshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-audioshare.html","searchKeys":["stopAudioshare","fun stopAudioshare(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopAudioshare"]},{"name":"fun stopCameraCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopCameraCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-camera-check.html","searchKeys":["stopCameraCheck","fun stopCameraCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopCameraCheck"]},{"name":"fun stopConnectivityCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopConnectivityCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-connectivity-check.html","searchKeys":["stopConnectivityCheck","fun stopConnectivityCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopConnectivityCheck"]},{"name":"fun stopHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopHLSStreaming","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-h-l-s-streaming.html","searchKeys":["stopHLSStreaming","fun stopHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopHLSStreaming"]},{"name":"fun stopMicCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopMicCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-mic-check.html","searchKeys":["stopMicCheck","fun stopMicCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopMicCheck"]},{"name":"fun stopRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopRealTimeTranscription","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-real-time-transcription.html","searchKeys":["stopRealTimeTranscription","fun stopRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopRealTimeTranscription"]},{"name":"fun stopRtmpAndRecording(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopRtmpAndRecording","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-rtmp-and-recording.html","searchKeys":["stopRtmpAndRecording","fun stopRtmpAndRecording(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopRtmpAndRecording"]},{"name":"fun stopScreenCapturer()","description":"live.hms.video.services.HMSScreenCaptureService.stopScreenCapturer","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/stop-screen-capturer.html","searchKeys":["stopScreenCapturer","fun stopScreenCapturer()","live.hms.video.services.HMSScreenCaptureService.stopScreenCapturer"]},{"name":"fun stopScreenshare(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopScreenshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-screenshare.html","searchKeys":["stopScreenshare","fun stopScreenshare(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopScreenshare"]},{"name":"fun stopSpeakerCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopSpeakerCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-speaker-check.html","searchKeys":["stopSpeakerCheck","fun stopSpeakerCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopSpeakerCheck"]},{"name":"fun stopWhiteboard(completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.stopWhiteboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/stop-whiteboard.html","searchKeys":["stopWhiteboard","fun stopWhiteboard(completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.stopWhiteboard"]},{"name":"fun switchAudioOutput(audioDevice: HMSAudioManager.AudioDevice)","description":"live.hms.video.sdk.HMSSDK.switchAudioOutput","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/switch-audio-output.html","searchKeys":["switchAudioOutput","fun switchAudioOutput(audioDevice: HMSAudioManager.AudioDevice)","live.hms.video.sdk.HMSSDK.switchAudioOutput"]},{"name":"fun switchCamera(deviceId: String, onAction: HMSActionResultListener?): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(deviceId: String, onAction: HMSActionResultListener?): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun switchCamera(face: HMSVideoTrackSettings.CameraFacing, onAction: HMSActionResultListener? = null): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(face: HMSVideoTrackSettings.CameraFacing, onAction: HMSActionResultListener? = null): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun switchCamera(onAction: HMSActionResultListener? = null): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(onAction: HMSActionResultListener? = null): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun toHMSMapping(signalDeviceMapping: AudioManagerUtil.AudioDevice): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.toHMSMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/to-h-m-s-mapping.html","searchKeys":["toHMSMapping","fun toHMSMapping(signalDeviceMapping: AudioManagerUtil.AudioDevice): HMSAudioManager.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.toHMSMapping"]},{"name":"fun toHMSRecordingState(): HMSRecordingState","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.toHMSRecordingState","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/to-h-m-s-recording-state.html","searchKeys":["toHMSRecordingState","fun toHMSRecordingState(): HMSRecordingState","live.hms.video.sdk.peerlist.models.BeamRecordingStates.toHMSRecordingState"]},{"name":"fun toHMSStreamingState(): HMSStreamingState","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.toHMSStreamingState","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/to-h-m-s-streaming-state.html","searchKeys":["toHMSStreamingState","fun toHMSStreamingState(): HMSStreamingState","live.hms.video.sdk.peerlist.models.BeamStreamingStates.toHMSStreamingState"]},{"name":"fun toHashMap(value: String): HashMap","description":"live.hms.video.database.converters.TypeConverter.Companion.toHashMap","location":"lib/live.hms.video.database.converters/-type-converter/-companion/to-hash-map.html","searchKeys":["toHashMap","fun toHashMap(value: String): HashMap","live.hms.video.database.converters.TypeConverter.Companion.toHashMap"]},{"name":"fun toSignalMapping(hmsDeviceMapping: HMSAudioManager.AudioDevice): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.toSignalMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/to-signal-mapping.html","searchKeys":["toSignalMapping","fun toSignalMapping(hmsDeviceMapping: HMSAudioManager.AudioDevice): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.toSignalMapping"]},{"name":"fun updateTemplateId(template: String)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateTemplateId","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-template-id.html","searchKeys":["updateTemplateId","fun updateTemplateId(template: String)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateTemplateId"]},{"name":"fun updateWithPeer(hmsPeer: HMSPeer?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithPeer","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-peer.html","searchKeys":["updateWithPeer","fun updateWithPeer(hmsPeer: HMSPeer?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithPeer"]},{"name":"fun updateWithRoom(hmsRoom: HMSRoom?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithRoom","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-room.html","searchKeys":["updateWithRoom","fun updateWithRoom(hmsRoom: HMSRoom?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithRoom"]},{"name":"fun updateWithToken(token: String?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithToken","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-token.html","searchKeys":["updateWithToken","fun updateWithToken(token: String?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithToken"]},{"name":"fun v(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.v","location":"lib/live.hms.video.utils/-h-m-s-logger/v.html","searchKeys":["v","fun v(tag: String, message: String)","live.hms.video.utils.HMSLogger.v"]},{"name":"fun valueOf(value: String): AgentType","description":"live.hms.video.events.AgentType.valueOf","location":"lib/live.hms.video.events/-agent-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AgentType","live.hms.video.events.AgentType.valueOf"]},{"name":"fun valueOf(value: String): AudioChangeEvent","description":"live.hms.video.audio.AudioChangeEvent.valueOf","location":"lib/live.hms.video.audio/-audio-change-event/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioChangeEvent","live.hms.video.audio.AudioChangeEvent.valueOf"]},{"name":"fun valueOf(value: String): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.valueOf","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.valueOf"]},{"name":"fun valueOf(value: String): AudioMixingMode","description":"live.hms.video.sdk.models.enums.AudioMixingMode.valueOf","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioMixingMode","live.hms.video.sdk.models.enums.AudioMixingMode.valueOf"]},{"name":"fun valueOf(value: String): BeamRecordingStates","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.valueOf","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BeamRecordingStates","live.hms.video.sdk.peerlist.models.BeamRecordingStates.valueOf"]},{"name":"fun valueOf(value: String): BeamStreamingStates","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.valueOf","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BeamStreamingStates","live.hms.video.sdk.peerlist.models.BeamStreamingStates.valueOf"]},{"name":"fun valueOf(value: String): BluetoothErrorType","description":"live.hms.video.audio.BluetoothErrorType.valueOf","location":"lib/live.hms.video.audio/-bluetooth-error-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BluetoothErrorType","live.hms.video.audio.BluetoothErrorType.valueOf"]},{"name":"fun valueOf(value: String): ConnectivityState","description":"live.hms.video.diagnostics.models.ConnectivityState.valueOf","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): ConnectivityState","live.hms.video.diagnostics.models.ConnectivityState.valueOf"]},{"name":"fun valueOf(value: String): DataChannelRequestMethod","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.valueOf","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): DataChannelRequestMethod","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.valueOf"]},{"name":"fun valueOf(value: String): DegradationPreference","description":"live.hms.video.sdk.models.DegradationPreference.valueOf","location":"lib/live.hms.video.sdk.models/-degradation-preference/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): DegradationPreference","live.hms.video.sdk.models.DegradationPreference.valueOf"]},{"name":"fun valueOf(value: String): HMSAnalyticsEventLevel","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAnalyticsEventLevel","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioCodec","description":"live.hms.video.media.codec.HMSAudioCodec.valueOf","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioCodec","live.hms.video.media.codec.HMSAudioCodec.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.valueOf","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManager.AudioDevice.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioManager.AudioManagerState","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.valueOf","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioManager.AudioManagerState","live.hms.video.audio.HMSAudioManager.AudioManagerState.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioTrackSettings.HMSAudioMode","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioTrackSettings.HMSAudioMode","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.valueOf"]},{"name":"fun valueOf(value: String): HMSHLSPlaylistType","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.valueOf","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSHLSPlaylistType","live.hms.video.sdk.models.HMSHLSPlaylistType.valueOf"]},{"name":"fun valueOf(value: String): HMSLayer","description":"live.hms.video.media.settings.HMSLayer.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-layer/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLayer","live.hms.video.media.settings.HMSLayer.valueOf"]},{"name":"fun valueOf(value: String): HMSLogger.LogFiles","description":"live.hms.video.utils.HMSLogger.LogFiles.valueOf","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLogger.LogFiles","live.hms.video.utils.HMSLogger.LogFiles.valueOf"]},{"name":"fun valueOf(value: String): HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.LogLevel.valueOf","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.LogLevel.valueOf"]},{"name":"fun valueOf(value: String): HMSMessageRecipientType","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSMessageRecipientType","live.hms.video.sdk.models.enums.HMSMessageRecipientType.valueOf"]},{"name":"fun valueOf(value: String): HMSMode","description":"live.hms.video.sdk.models.enums.HMSMode.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSMode","live.hms.video.sdk.models.enums.HMSMode.valueOf"]},{"name":"fun valueOf(value: String): HMSPeerType","description":"live.hms.video.sdk.models.HMSPeerType.valueOf","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPeerType","live.hms.video.sdk.models.HMSPeerType.valueOf"]},{"name":"fun valueOf(value: String): HMSPeerUpdate","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPeerUpdate","live.hms.video.sdk.models.enums.HMSPeerUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSPollQuestionType","description":"live.hms.video.polls.models.question.HMSPollQuestionType.valueOf","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPollQuestionType","live.hms.video.polls.models.question.HMSPollQuestionType.valueOf"]},{"name":"fun valueOf(value: String): HMSPollUpdateType","description":"live.hms.video.polls.models.HMSPollUpdateType.valueOf","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPollUpdateType","live.hms.video.polls.models.HMSPollUpdateType.valueOf"]},{"name":"fun valueOf(value: String): HMSRecordingState","description":"live.hms.video.sdk.models.enums.HMSRecordingState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSRecordingState","live.hms.video.sdk.models.enums.HMSRecordingState.valueOf"]},{"name":"fun valueOf(value: String): HMSRoomUpdate","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSRoomUpdate","live.hms.video.sdk.models.enums.HMSRoomUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSStreamingState","description":"live.hms.video.sdk.models.enums.HMSStreamingState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSStreamingState","live.hms.video.sdk.models.enums.HMSStreamingState.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackSettings.InitState","live.hms.video.media.settings.HMSTrackSettings.InitState.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackType","description":"live.hms.video.media.tracks.HMSTrackType.valueOf","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackType","live.hms.video.media.tracks.HMSTrackType.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackUpdate","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackUpdate","live.hms.video.sdk.models.enums.HMSTrackUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoCodec","description":"live.hms.video.media.codec.HMSVideoCodec.valueOf","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoCodec","live.hms.video.media.codec.HMSVideoCodec.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoPluginType","description":"live.hms.video.plugin.video.HMSVideoPluginType.valueOf","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoPluginType","live.hms.video.plugin.video.HMSVideoPluginType.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoTrackSettings.CameraFacing","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoTrackSettings.CameraFacing","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.valueOf"]},{"name":"fun valueOf(value: String): HmsPollCategory","description":"live.hms.video.polls.models.HmsPollCategory.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-category/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollCategory","live.hms.video.polls.models.HmsPollCategory.valueOf"]},{"name":"fun valueOf(value: String): HmsPollState","description":"live.hms.video.polls.models.HmsPollState.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollState","live.hms.video.polls.models.HmsPollState.valueOf"]},{"name":"fun valueOf(value: String): HmsPollUserTrackingMode","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollUserTrackingMode","live.hms.video.polls.models.HmsPollUserTrackingMode.valueOf"]},{"name":"fun valueOf(value: String): Layer","description":"live.hms.video.sdk.models.Layer.valueOf","location":"lib/live.hms.video.sdk.models/-layer/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Layer","live.hms.video.sdk.models.Layer.valueOf"]},{"name":"fun valueOf(value: String): QualityLimitationReason","description":"live.hms.video.connection.degredation.QualityLimitationReason.valueOf","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): QualityLimitationReason","live.hms.video.connection.degredation.QualityLimitationReason.valueOf"]},{"name":"fun valueOf(value: String): RetrySchedulerState","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): RetrySchedulerState","live.hms.video.sdk.models.enums.RetrySchedulerState.valueOf"]},{"name":"fun valueOf(value: String): State","description":"live.hms.video.whiteboard.State.valueOf","location":"lib/live.hms.video.whiteboard/-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): State","live.hms.video.whiteboard.State.valueOf"]},{"name":"fun valueOf(value: String): TranscriptionState","description":"live.hms.video.sdk.models.TranscriptionState.valueOf","location":"lib/live.hms.video.sdk.models/-transcription-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): TranscriptionState","live.hms.video.sdk.models.TranscriptionState.valueOf"]},{"name":"fun valueOf(value: String): TranscriptionsMode","description":"live.hms.video.sdk.models.TranscriptionsMode.valueOf","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): TranscriptionsMode","live.hms.video.sdk.models.TranscriptionsMode.valueOf"]},{"name":"fun valueOf(value: String): VideoPluginMode","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.valueOf","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): VideoPluginMode","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.valueOf"]},{"name":"fun values(): Array","description":"live.hms.video.events.AgentType.values","location":"lib/live.hms.video.events/-agent-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.events.AgentType.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.AudioChangeEvent.values","location":"lib/live.hms.video.audio/-audio-change-event/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.AudioChangeEvent.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.values","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.AudioMixingMode.values","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.AudioMixingMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.values","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.peerlist.models.BeamRecordingStates.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.values","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.peerlist.models.BeamStreamingStates.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.BluetoothErrorType.values","location":"lib/live.hms.video.audio/-bluetooth-error-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.BluetoothErrorType.values"]},{"name":"fun values(): Array","description":"live.hms.video.diagnostics.models.ConnectivityState.values","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.diagnostics.models.ConnectivityState.values"]},{"name":"fun values(): Array","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.values","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/values.html","searchKeys":["values","fun values(): Array","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.DegradationPreference.values","location":"lib/live.hms.video.sdk.models/-degradation-preference/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.DegradationPreference.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.codec.HMSAudioCodec.values","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.codec.HMSAudioCodec.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.values","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.HMSAudioManager.AudioDevice.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.values","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.HMSAudioManager.AudioManagerState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.values","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.values","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.HMSHLSPlaylistType.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSLayer.values","location":"lib/live.hms.video.media.settings/-h-m-s-layer/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSLayer.values"]},{"name":"fun values(): Array","description":"live.hms.video.utils.HMSLogger.LogFiles.values","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/values.html","searchKeys":["values","fun values(): Array","live.hms.video.utils.HMSLogger.LogFiles.values"]},{"name":"fun values(): Array","description":"live.hms.video.utils.HMSLogger.LogLevel.values","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/values.html","searchKeys":["values","fun values(): Array","live.hms.video.utils.HMSLogger.LogLevel.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSMessageRecipientType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSMode.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.HMSPeerType.values","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.HMSPeerType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSPeerUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.question.HMSPollQuestionType.values","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.question.HMSPollQuestionType.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HMSPollUpdateType.values","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HMSPollUpdateType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSRecordingState.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSRecordingState.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSRoomUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSStreamingState.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSStreamingState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.values","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSTrackSettings.InitState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.tracks.HMSTrackType.values","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.tracks.HMSTrackType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSTrackUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.codec.HMSVideoCodec.values","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.codec.HMSVideoCodec.values"]},{"name":"fun values(): Array","description":"live.hms.video.plugin.video.HMSVideoPluginType.values","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.plugin.video.HMSVideoPluginType.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.values","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollCategory.values","location":"lib/live.hms.video.polls.models/-hms-poll-category/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollCategory.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollState.values","location":"lib/live.hms.video.polls.models/-hms-poll-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollState.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.values","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollUserTrackingMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.Layer.values","location":"lib/live.hms.video.sdk.models/-layer/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.Layer.values"]},{"name":"fun values(): Array","description":"live.hms.video.connection.degredation.QualityLimitationReason.values","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/values.html","searchKeys":["values","fun values(): Array","live.hms.video.connection.degredation.QualityLimitationReason.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.values","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.RetrySchedulerState.values"]},{"name":"fun values(): Array","description":"live.hms.video.whiteboard.State.values","location":"lib/live.hms.video.whiteboard/-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.whiteboard.State.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.TranscriptionState.values","location":"lib/live.hms.video.sdk.models/-transcription-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.TranscriptionState.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.TranscriptionsMode.values","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.TranscriptionsMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.values","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.values"]},{"name":"fun video(video: HMSVideoTrackSettings?): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.video","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/video.html","searchKeys":["video","fun video(video: HMSVideoTrackSettings?): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.video"]},{"name":"fun volume(volume: Double): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.volume","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/volume.html","searchKeys":["volume","fun volume(volume: Double): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.volume"]},{"name":"fun w(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.w","location":"lib/live.hms.video.utils/-h-m-s-logger/w.html","searchKeys":["w","fun w(tag: String, message: String)","live.hms.video.utils.HMSLogger.w"]},{"name":"fun w(tag: String, message: String, tr: Throwable)","description":"live.hms.video.utils.HMSLogger.w","location":"lib/live.hms.video.utils/-h-m-s-logger/w.html","searchKeys":["w","fun w(tag: String, message: String, tr: Throwable)","live.hms.video.utils.HMSLogger.w"]},{"name":"fun withAnonymous(anonymous: Boolean): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withAnonymous","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-anonymous.html","searchKeys":["withAnonymous","fun withAnonymous(anonymous: Boolean): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withAnonymous"]},{"name":"fun withAnswerHidden(answerHidden: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withAnswerHidden","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-answer-hidden.html","searchKeys":["withAnswerHidden","fun withAnswerHidden(answerHidden: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withAnswerHidden"]},{"name":"fun withCanBeSkipped(canBeSkipped: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanBeSkipped","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-can-be-skipped.html","searchKeys":["withCanBeSkipped","fun withCanBeSkipped(canBeSkipped: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanBeSkipped"]},{"name":"fun withCanChangeResponse(canChangeResponse: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanChangeResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-can-change-response.html","searchKeys":["withCanChangeResponse","fun withCanChangeResponse(canChangeResponse: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanChangeResponse"]},{"name":"fun withCategory(category: HmsPollCategory): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withCategory","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-category.html","searchKeys":["withCategory","fun withCategory(category: HmsPollCategory): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withCategory"]},{"name":"fun withDuration(duration: Long): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withDuration","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-duration.html","searchKeys":["withDuration","fun withDuration(duration: Long): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withDuration"]},{"name":"fun withDuration(duration: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withDuration","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-duration.html","searchKeys":["withDuration","fun withDuration(duration: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withDuration"]},{"name":"fun withMaxLength(maxLength: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMaxLength","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-max-length.html","searchKeys":["withMaxLength","fun withMaxLength(maxLength: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMaxLength"]},{"name":"fun withMinLength(minLength: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMinLength","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-min-length.html","searchKeys":["withMinLength","fun withMinLength(minLength: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMinLength"]},{"name":"fun withPollId(pollId: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withPollId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-poll-id.html","searchKeys":["withPollId","fun withPollId(pollId: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withPollId"]},{"name":"fun withRolesThatCanViewResponses(rolesThatCanViewResponses: List?): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanViewResponses","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-roles-that-can-view-responses.html","searchKeys":["withRolesThatCanViewResponses","fun withRolesThatCanViewResponses(rolesThatCanViewResponses: List?): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanViewResponses"]},{"name":"fun withRolesThatCanVote(rolesThatCanVote: List?): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanVote","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-roles-that-can-vote.html","searchKeys":["withRolesThatCanVote","fun withRolesThatCanVote(rolesThatCanVote: List?): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanVote"]},{"name":"fun withTitle(title: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withTitle","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-title.html","searchKeys":["withTitle","fun withTitle(title: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withTitle"]},{"name":"fun withTitle(title: String): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withTitle","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-title.html","searchKeys":["withTitle","fun withTitle(title: String): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withTitle"]},{"name":"fun withUserTrackingMode(userTrackingMode: HmsPollUserTrackingMode): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withUserTrackingMode","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-user-tracking-mode.html","searchKeys":["withUserTrackingMode","fun withUserTrackingMode(userTrackingMode: HmsPollUserTrackingMode): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withUserTrackingMode"]},{"name":"fun withWeight(weight: Int): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withWeight","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-weight.html","searchKeys":["withWeight","fun withWeight(weight: Int): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withWeight"]},{"name":"fun yuvToRgb(image: Image, output: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.yuvToRgb","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/yuv-to-rgb.html","searchKeys":["yuvToRgb","fun yuvToRgb(image: Image, output: Bitmap)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.yuvToRgb"]},{"name":"high","description":"live.hms.video.sdk.models.Layer.high","location":"lib/live.hms.video.sdk.models/-layer/high/index.html","searchKeys":["high","high","live.hms.video.sdk.models.Layer.high"]},{"name":"initialised","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.initialised","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/initialised/index.html","searchKeys":["initialised","initialised","live.hms.video.sdk.peerlist.models.BeamRecordingStates.initialised"]},{"name":"initialised","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.initialised","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/initialised/index.html","searchKeys":["initialised","initialised","live.hms.video.sdk.peerlist.models.BeamStreamingStates.initialised"]},{"name":"inline fun traceTime(name: String, block: () -> T)","description":"live.hms.video.utils.traceTime","location":"lib/live.hms.video.utils/trace-time.html","searchKeys":["traceTime","inline fun traceTime(name: String, block: () -> T)","live.hms.video.utils.traceTime"]},{"name":"inner class LocalBinder : Binder","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html","searchKeys":["LocalBinder","inner class LocalBinder : Binder","live.hms.video.services.HMSScreenCaptureService.LocalBinder"]},{"name":"interface AudioManagerDeviceChangeListener","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/index.html","searchKeys":["AudioManagerDeviceChangeListener","interface AudioManagerDeviceChangeListener","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener"]},{"name":"interface AudioManagerFocusChangeCallbacks","description":"live.hms.video.audio.AudioManagerFocusChangeCallbacks","location":"lib/live.hms.video.audio/-audio-manager-focus-change-callbacks/index.html","searchKeys":["AudioManagerFocusChangeCallbacks","interface AudioManagerFocusChangeCallbacks","live.hms.video.audio.AudioManagerFocusChangeCallbacks"]},{"name":"interface BaseSample","description":"live.hms.video.connection.stats.clientside.model.BaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-base-sample/index.html","searchKeys":["BaseSample","interface BaseSample","live.hms.video.connection.stats.clientside.model.BaseSample"]},{"name":"interface ConnectivityCheckListener","description":"live.hms.video.diagnostics.ConnectivityCheckListener","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/index.html","searchKeys":["ConnectivityCheckListener","interface ConnectivityCheckListener","live.hms.video.diagnostics.ConnectivityCheckListener"]},{"name":"interface HMSActionResultListener : IErrorListener","description":"live.hms.video.sdk.HMSActionResultListener","location":"lib/live.hms.video.sdk/-h-m-s-action-result-listener/index.html","searchKeys":["HMSActionResultListener","interface HMSActionResultListener : IErrorListener","live.hms.video.sdk.HMSActionResultListener"]},{"name":"interface HMSAddSinkResultListener : IErrorListener","description":"live.hms.video.sdk.HMSAddSinkResultListener","location":"lib/live.hms.video.sdk/-h-m-s-add-sink-result-listener/index.html","searchKeys":["HMSAddSinkResultListener","interface HMSAddSinkResultListener : IErrorListener","live.hms.video.sdk.HMSAddSinkResultListener"]},{"name":"interface HMSAudioDeviceCheckListener","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/index.html","searchKeys":["HMSAudioDeviceCheckListener","interface HMSAudioDeviceCheckListener","live.hms.video.diagnostics.HMSAudioDeviceCheckListener"]},{"name":"interface HMSAudioListener","description":"live.hms.video.sdk.HMSAudioListener","location":"lib/live.hms.video.sdk/-h-m-s-audio-listener/index.html","searchKeys":["HMSAudioListener","interface HMSAudioListener","live.hms.video.sdk.HMSAudioListener"]},{"name":"interface HMSAudioManager","description":"live.hms.video.audio.HMSAudioManager","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/index.html","searchKeys":["HMSAudioManager","interface HMSAudioManager","live.hms.video.audio.HMSAudioManager"]},{"name":"interface HMSBitmapUpdateListener","description":"live.hms.video.plugin.video.utils.HMSBitmapUpdateListener","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-update-listener/index.html","searchKeys":["HMSBitmapUpdateListener","interface HMSBitmapUpdateListener","live.hms.video.plugin.video.utils.HMSBitmapUpdateListener"]},{"name":"interface HMSCameraCheckListener","description":"live.hms.video.diagnostics.HMSCameraCheckListener","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/index.html","searchKeys":["HMSCameraCheckListener","interface HMSCameraCheckListener","live.hms.video.diagnostics.HMSCameraCheckListener"]},{"name":"interface HMSCapturer","description":"live.hms.video.media.capturers.HMSCapturer","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html","searchKeys":["HMSCapturer","interface HMSCapturer","live.hms.video.media.capturers.HMSCapturer"]},{"name":"interface HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.HMSDataChannelRequestParams","location":"lib/live.hms.video.media.streams.models/-h-m-s-data-channel-request-params/index.html","searchKeys":["HMSDataChannelRequestParams","interface HMSDataChannelRequestParams","live.hms.video.media.streams.models.HMSDataChannelRequestParams"]},{"name":"interface HMSDataChannelResponse","description":"live.hms.video.media.streams.models.HMSDataChannelResponse","location":"lib/live.hms.video.media.streams.models/-h-m-s-data-channel-response/index.html","searchKeys":["HMSDataChannelResponse","interface HMSDataChannelResponse","live.hms.video.media.streams.models.HMSDataChannelResponse"]},{"name":"interface HMSKeyChangeListener","description":"live.hms.video.sessionstore.HMSKeyChangeListener","location":"lib/live.hms.video.sessionstore/-h-m-s-key-change-listener/index.html","searchKeys":["HMSKeyChangeListener","interface HMSKeyChangeListener","live.hms.video.sessionstore.HMSKeyChangeListener"]},{"name":"interface HMSLayoutListener : IErrorListener","description":"live.hms.video.signal.init.HMSLayoutListener","location":"lib/live.hms.video.signal.init/-h-m-s-layout-listener/index.html","searchKeys":["HMSLayoutListener","interface HMSLayoutListener : IErrorListener","live.hms.video.signal.init.HMSLayoutListener"]},{"name":"interface HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/index.html","searchKeys":["HMSLocalTrack","interface HMSLocalTrack","live.hms.video.media.tracks.HMSLocalTrack"]},{"name":"interface HMSMessageResultListener : IErrorListener","description":"live.hms.video.sdk.HMSMessageResultListener","location":"lib/live.hms.video.sdk/-h-m-s-message-result-listener/index.html","searchKeys":["HMSMessageResultListener","interface HMSMessageResultListener : IErrorListener","live.hms.video.sdk.HMSMessageResultListener"]},{"name":"interface HMSNetworkObserver","description":"live.hms.video.connection.stats.quality.HMSNetworkObserver","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-observer/index.html","searchKeys":["HMSNetworkObserver","interface HMSNetworkObserver","live.hms.video.connection.stats.quality.HMSNetworkObserver"]},{"name":"interface HMSPluginResultListener","description":"live.hms.video.sdk.HMSPluginResultListener","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/index.html","searchKeys":["HMSPluginResultListener","interface HMSPluginResultListener","live.hms.video.sdk.HMSPluginResultListener"]},{"name":"interface HMSPreviewListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.HMSPreviewListener","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/index.html","searchKeys":["HMSPreviewListener","interface HMSPreviewListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.HMSPreviewListener"]},{"name":"interface HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/index.html","searchKeys":["HMSRemoteTrack","interface HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteTrack"]},{"name":"interface HMSSessionMetadataListener : IErrorListener","description":"live.hms.video.sdk.HMSSessionMetadataListener","location":"lib/live.hms.video.sdk/-h-m-s-session-metadata-listener/index.html","searchKeys":["HMSSessionMetadataListener","interface HMSSessionMetadataListener : IErrorListener","live.hms.video.sdk.HMSSessionMetadataListener"]},{"name":"interface HMSStatsObserver","description":"live.hms.video.connection.stats.HMSStatsObserver","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/index.html","searchKeys":["HMSStatsObserver","interface HMSStatsObserver","live.hms.video.connection.stats.HMSStatsObserver"]},{"name":"interface HMSTokenListener : IErrorListener","description":"live.hms.video.signal.init.HMSTokenListener","location":"lib/live.hms.video.signal.init/-h-m-s-token-listener/index.html","searchKeys":["HMSTokenListener","interface HMSTokenListener : IErrorListener","live.hms.video.signal.init.HMSTokenListener"]},{"name":"interface HMSUpdateListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.HMSUpdateListener","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/index.html","searchKeys":["HMSUpdateListener","interface HMSUpdateListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.HMSUpdateListener"]},{"name":"interface HMSVideoPlugin","description":"live.hms.video.plugin.video.HMSVideoPlugin","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/index.html","searchKeys":["HMSVideoPlugin","interface HMSVideoPlugin","live.hms.video.plugin.video.HMSVideoPlugin"]},{"name":"interface HMSWhiteboardUpdateListener","description":"live.hms.video.whiteboard.HMSWhiteboardUpdateListener","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update-listener/index.html","searchKeys":["HMSWhiteboardUpdateListener","interface HMSWhiteboardUpdateListener","live.hms.video.whiteboard.HMSWhiteboardUpdateListener"]},{"name":"interface HmsPollUpdateListener","description":"live.hms.video.interactivity.HmsPollUpdateListener","location":"lib/live.hms.video.interactivity/-hms-poll-update-listener/index.html","searchKeys":["HmsPollUpdateListener","interface HmsPollUpdateListener","live.hms.video.interactivity.HmsPollUpdateListener"]},{"name":"interface HmsTypedActionResultListener : IErrorListener","description":"live.hms.video.sdk.HmsTypedActionResultListener","location":"lib/live.hms.video.sdk/-hms-typed-action-result-listener/index.html","searchKeys":["HmsTypedActionResultListener","interface HmsTypedActionResultListener : IErrorListener","live.hms.video.sdk.HmsTypedActionResultListener"]},{"name":"interface HmsVideoFrameListener","description":"live.hms.video.sdk.HmsVideoFrameListener","location":"lib/live.hms.video.sdk/-hms-video-frame-listener/index.html","searchKeys":["HmsVideoFrameListener","interface HmsVideoFrameListener","live.hms.video.sdk.HmsVideoFrameListener"]},{"name":"interface HmsVirtualBackgroundInterface : HMSVideoPlugin","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/index.html","searchKeys":["HmsVirtualBackgroundInterface","interface HmsVirtualBackgroundInterface : HMSVideoPlugin","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface"]},{"name":"interface IErrorListener","description":"live.hms.video.sdk.IErrorListener","location":"lib/live.hms.video.sdk/-i-error-listener/index.html","searchKeys":["IErrorListener","interface IErrorListener","live.hms.video.sdk.IErrorListener"]},{"name":"interface Loggable","description":"live.hms.video.utils.HMSLogger.Loggable","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/index.html","searchKeys":["Loggable","interface Loggable","live.hms.video.utils.HMSLogger.Loggable"]},{"name":"interface NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellation","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/index.html","searchKeys":["NoiseCancellation","interface NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellation"]},{"name":"interface NoiseCancellationFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory/index.html","searchKeys":["NoiseCancellationFactory","interface NoiseCancellationFactory","live.hms.video.factories.noisecancellation.NoiseCancellationFactory"]},{"name":"interface PeerListResultListener : IErrorListener","description":"live.hms.video.sdk.listeners.PeerListResultListener","location":"lib/live.hms.video.sdk.listeners/-peer-list-result-listener/index.html","searchKeys":["PeerListResultListener","interface PeerListResultListener : IErrorListener","live.hms.video.sdk.listeners.PeerListResultListener"]},{"name":"interface PublishBaseSamples : BaseSample","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/index.html","searchKeys":["PublishBaseSamples","interface PublishBaseSamples : BaseSample","live.hms.video.connection.stats.clientside.model.PublishBaseSamples"]},{"name":"interface RequestPermissionInterface","description":"live.hms.video.sdk.RequestPermissionInterface","location":"lib/live.hms.video.sdk/-request-permission-interface/index.html","searchKeys":["RequestPermissionInterface","interface RequestPermissionInterface","live.hms.video.sdk.RequestPermissionInterface"]},{"name":"interface RolePreviewListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.RolePreviewListener","location":"lib/live.hms.video.sdk/-role-preview-listener/index.html","searchKeys":["RolePreviewListener","interface RolePreviewListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.RolePreviewListener"]},{"name":"interface SubscribeBaseSample : BaseSample","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/index.html","searchKeys":["SubscribeBaseSample","interface SubscribeBaseSample : BaseSample","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample"]},{"name":"interface TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/index.html","searchKeys":["TrackAnalytics","interface TrackAnalytics","live.hms.video.connection.stats.clientside.model.TrackAnalytics"]},{"name":"interface VideoFrameInfoListener","description":"live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-frame-info-listener/index.html","searchKeys":["VideoFrameInfoListener","interface VideoFrameInfoListener","live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener"]},{"name":"interface VideoSubscribeBaseSample : BaseSample","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/index.html","searchKeys":["VideoSubscribeBaseSample","interface VideoSubscribeBaseSample : BaseSample","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample"]},{"name":"longAnswer","description":"live.hms.video.polls.models.question.HMSPollQuestionType.longAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/long-answer/index.html","searchKeys":["longAnswer","longAnswer","live.hms.video.polls.models.question.HMSPollQuestionType.longAnswer"]},{"name":"low","description":"live.hms.video.sdk.models.Layer.low","location":"lib/live.hms.video.sdk.models/-layer/low/index.html","searchKeys":["low","low","live.hms.video.sdk.models.Layer.low"]},{"name":"medium","description":"live.hms.video.sdk.models.Layer.medium","location":"lib/live.hms.video.sdk.models/-layer/medium/index.html","searchKeys":["medium","medium","live.hms.video.sdk.models.Layer.medium"]},{"name":"multiChoice","description":"live.hms.video.polls.models.question.HMSPollQuestionType.multiChoice","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/multi-choice/index.html","searchKeys":["multiChoice","multiChoice","live.hms.video.polls.models.question.HMSPollQuestionType.multiChoice"]},{"name":"noDVR","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.noDVR","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/no-d-v-r/index.html","searchKeys":["noDVR","noDVR","live.hms.video.sdk.models.HMSHLSPlaylistType.noDVR"]},{"name":"none","description":"live.hms.video.sdk.models.Layer.none","location":"lib/live.hms.video.sdk.models/-layer/none/index.html","searchKeys":["none","none","live.hms.video.sdk.models.Layer.none"]},{"name":"none","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.none","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/none/index.html","searchKeys":["none","none","live.hms.video.sdk.peerlist.models.BeamRecordingStates.none"]},{"name":"none","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.none","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/none/index.html","searchKeys":["none","none","live.hms.video.sdk.peerlist.models.BeamStreamingStates.none"]},{"name":"object AndroidSDKConstants","description":"live.hms.video.utils.AndroidSDKConstants","location":"lib/live.hms.video.utils/-android-s-d-k-constants/index.html","searchKeys":["AndroidSDKConstants","object AndroidSDKConstants","live.hms.video.utils.AndroidSDKConstants"]},{"name":"object AudioDeviceMapping","description":"live.hms.video.audio.manager.AudioDeviceMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/index.html","searchKeys":["AudioDeviceMapping","object AudioDeviceMapping","live.hms.video.audio.manager.AudioDeviceMapping"]},{"name":"object Available : AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.Available","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-available/index.html","searchKeys":["Available","object Available : AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus.Available"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Audio.Companion","location":"lib/live.hms.video.connection.degredation/-audio/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Audio.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Peer.Companion","location":"lib/live.hms.video.connection.degredation/-peer/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Peer.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Video.Companion","location":"lib/live.hms.video.connection.degredation/-video/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Video.Companion"]},{"name":"object Companion","description":"live.hms.video.database.converters.TypeConverter.Companion","location":"lib/live.hms.video.database.converters/-type-converter/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.database.converters.TypeConverter.Companion"]},{"name":"object Companion","description":"live.hms.video.diagnostics.HMSDiagnostics.Companion","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.diagnostics.HMSDiagnostics.Companion"]},{"name":"object Companion","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion"]},{"name":"object Companion","description":"live.hms.video.media.tracks.HMSTrackType.Companion","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.media.tracks.HMSTrackType.Companion"]},{"name":"object Companion","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion"]},{"name":"object Companion","description":"live.hms.video.sdk.HMSSDK.Companion","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.sdk.HMSSDK.Companion"]},{"name":"object Companion","description":"live.hms.video.services.HMSScreenCaptureService.Companion","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.services.HMSScreenCaptureService.Companion"]},{"name":"object Companion","description":"live.hms.video.services.LogAlarmManager.Companion","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.services.LogAlarmManager.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.HmsUtilities.Companion","location":"lib/live.hms.video.utils/-hms-utilities/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.HmsUtilities.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.MicrophoneUtils.Companion","location":"lib/live.hms.video.utils/-microphone-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.MicrophoneUtils.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.WertcAudioUtils.Companion","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.WertcAudioUtils.Companion"]},{"name":"object EFFECTS_SDK_ENABLED : Features","description":"live.hms.video.sdk.featureflags.Features.EFFECTS_SDK_ENABLED","location":"lib/live.hms.video.sdk.featureflags/-features/-e-f-f-e-c-t-s_-s-d-k_-e-n-a-b-l-e-d/index.html","searchKeys":["EFFECTS_SDK_ENABLED","object EFFECTS_SDK_ENABLED : Features","live.hms.video.sdk.featureflags.Features.EFFECTS_SDK_ENABLED"]},{"name":"object ErrorCodes","description":"live.hms.video.error.ErrorCodes","location":"lib/live.hms.video.error/-error-codes/index.html","searchKeys":["ErrorCodes","object ErrorCodes","live.hms.video.error.ErrorCodes"]},{"name":"object GenericErrors","description":"live.hms.video.error.ErrorCodes.GenericErrors","location":"lib/live.hms.video.error/-error-codes/-generic-errors/index.html","searchKeys":["GenericErrors","object GenericErrors","live.hms.video.error.ErrorCodes.GenericErrors"]},{"name":"object GsonUtils","description":"live.hms.video.utils.GsonUtils","location":"lib/live.hms.video.utils/-gson-utils/index.html","searchKeys":["GsonUtils","object GsonUtils","live.hms.video.utils.GsonUtils"]},{"name":"object HIPPA_ROOM : Features","description":"live.hms.video.sdk.featureflags.Features.HIPPA_ROOM","location":"lib/live.hms.video.sdk.featureflags/-features/-h-i-p-p-a_-r-o-o-m/index.html","searchKeys":["HIPPA_ROOM","object HIPPA_ROOM : Features","live.hms.video.sdk.featureflags.Features.HIPPA_ROOM"]},{"name":"object HMSCoroutineScope : CoroutineScope","description":"live.hms.video.utils.HMSCoroutineScope","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html","searchKeys":["HMSCoroutineScope","object HMSCoroutineScope : CoroutineScope","live.hms.video.utils.HMSCoroutineScope"]},{"name":"object HMSLogger","description":"live.hms.video.utils.HMSLogger","location":"lib/live.hms.video.utils/-h-m-s-logger/index.html","searchKeys":["HMSLogger","object HMSLogger","live.hms.video.utils.HMSLogger"]},{"name":"object HMSMessageType","description":"live.hms.video.sdk.models.enums.HMSMessageType","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/index.html","searchKeys":["HMSMessageType","object HMSMessageType","live.hms.video.sdk.models.enums.HMSMessageType"]},{"name":"object HMSTrackSource","description":"live.hms.video.media.tracks.HMSTrackSource","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/index.html","searchKeys":["HMSTrackSource","object HMSTrackSource","live.hms.video.media.tracks.HMSTrackSource"]},{"name":"object InitAPIErrors","description":"live.hms.video.error.ErrorCodes.InitAPIErrors","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/index.html","searchKeys":["InitAPIErrors","object InitAPIErrors","live.hms.video.error.ErrorCodes.InitAPIErrors"]},{"name":"object LogUtils","description":"live.hms.video.utils.LogUtils","location":"lib/live.hms.video.utils/-log-utils/index.html","searchKeys":["LogUtils","object LogUtils","live.hms.video.utils.LogUtils"]},{"name":"object NOISE_CANCELLATION : Features","description":"live.hms.video.sdk.featureflags.Features.NOISE_CANCELLATION","location":"lib/live.hms.video.sdk.featureflags/-features/-n-o-i-s-e_-c-a-n-c-e-l-l-a-t-i-o-n/index.html","searchKeys":["NOISE_CANCELLATION","object NOISE_CANCELLATION : Features","live.hms.video.sdk.featureflags.Features.NOISE_CANCELLATION"]},{"name":"object NON_WEBRTC_DISABLE_OFFER : Features","description":"live.hms.video.sdk.featureflags.Features.NON_WEBRTC_DISABLE_OFFER","location":"lib/live.hms.video.sdk.featureflags/-features/-n-o-n_-w-e-b-r-t-c_-d-i-s-a-b-l-e_-o-f-f-e-r/index.html","searchKeys":["NON_WEBRTC_DISABLE_OFFER","object NON_WEBRTC_DISABLE_OFFER : Features","live.hms.video.sdk.featureflags.Features.NON_WEBRTC_DISABLE_OFFER"]},{"name":"object PUBLISH_STATS : Features","description":"live.hms.video.sdk.featureflags.Features.PUBLISH_STATS","location":"lib/live.hms.video.sdk.featureflags/-features/-p-u-b-l-i-s-h_-s-t-a-t-s/index.html","searchKeys":["PUBLISH_STATS","object PUBLISH_STATS : Features","live.hms.video.sdk.featureflags.Features.PUBLISH_STATS"]},{"name":"object ProcessTimeVariables","description":"live.hms.video.sdk.ProcessTimeVariables","location":"lib/live.hms.video.sdk/-process-time-variables/index.html","searchKeys":["ProcessTimeVariables","object ProcessTimeVariables","live.hms.video.sdk.ProcessTimeVariables"]},{"name":"object SERVER_SIDE_SUBSCRIBE_DEGRADATION : Features","description":"live.hms.video.sdk.featureflags.Features.SERVER_SIDE_SUBSCRIBE_DEGRADATION","location":"lib/live.hms.video.sdk.featureflags/-features/-s-e-r-v-e-r_-s-i-d-e_-s-u-b-s-c-r-i-b-e_-d-e-g-r-a-d-a-t-i-o-n/index.html","searchKeys":["SERVER_SIDE_SUBSCRIBE_DEGRADATION","object SERVER_SIDE_SUBSCRIBE_DEGRADATION : Features","live.hms.video.sdk.featureflags.Features.SERVER_SIDE_SUBSCRIBE_DEGRADATION"]},{"name":"object SIMULCAST : Features","description":"live.hms.video.sdk.featureflags.Features.SIMULCAST","location":"lib/live.hms.video.sdk.featureflags/-features/-s-i-m-u-l-c-a-s-t/index.html","searchKeys":["SIMULCAST","object SIMULCAST : Features","live.hms.video.sdk.featureflags.Features.SIMULCAST"]},{"name":"object SOFTWARE_ECHO_CANCELLATION_ENABLED : Features","description":"live.hms.video.sdk.featureflags.Features.SOFTWARE_ECHO_CANCELLATION_ENABLED","location":"lib/live.hms.video.sdk.featureflags/-features/-s-o-f-t-w-a-r-e_-e-c-h-o_-c-a-n-c-e-l-l-a-t-i-o-n_-e-n-a-b-l-e-d/index.html","searchKeys":["SOFTWARE_ECHO_CANCELLATION_ENABLED","object SOFTWARE_ECHO_CANCELLATION_ENABLED : Features","live.hms.video.sdk.featureflags.Features.SOFTWARE_ECHO_CANCELLATION_ENABLED"]},{"name":"object SUBSCRIBER_STATS : Features","description":"live.hms.video.sdk.featureflags.Features.SUBSCRIBER_STATS","location":"lib/live.hms.video.sdk.featureflags/-features/-s-u-b-s-c-r-i-b-e-r_-s-t-a-t-s/index.html","searchKeys":["SUBSCRIBER_STATS","object SUBSCRIBER_STATS : Features","live.hms.video.sdk.featureflags.Features.SUBSCRIBER_STATS"]},{"name":"object SharedEglContext","description":"live.hms.video.utils.SharedEglContext","location":"lib/live.hms.video.utils/-shared-egl-context/index.html","searchKeys":["SharedEglContext","object SharedEglContext","live.hms.video.utils.SharedEglContext"]},{"name":"object TracksErrors","description":"live.hms.video.error.ErrorCodes.TracksErrors","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/index.html","searchKeys":["TracksErrors","object TracksErrors","live.hms.video.error.ErrorCodes.TracksErrors"]},{"name":"object WebSocketConnectionErrors","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/index.html","searchKeys":["WebSocketConnectionErrors","object WebSocketConnectionErrors","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors"]},{"name":"object WebrtcErrors","description":"live.hms.video.error.ErrorCodes.WebrtcErrors","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/index.html","searchKeys":["WebrtcErrors","object WebrtcErrors","live.hms.video.error.ErrorCodes.WebrtcErrors"]},{"name":"object WebsocketMethodErrors","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/index.html","searchKeys":["WebsocketMethodErrors","object WebsocketMethodErrors","live.hms.video.error.ErrorCodes.WebsocketMethodErrors"]},{"name":"open class HMSAudioManagerLegacy : HMSAudioManager","description":"live.hms.video.audio.HMSAudioManagerLegacy","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/index.html","searchKeys":["HMSAudioManagerLegacy","open class HMSAudioManagerLegacy : HMSAudioManager","live.hms.video.audio.HMSAudioManagerLegacy"]},{"name":"open class HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, var source: String = HMSTrackSource.REGULAR) : HMSTrack","description":"live.hms.video.media.tracks.HMSAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/index.html","searchKeys":["HMSAudioTrack","open class HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, var source: String = HMSTrackSource.REGULAR) : HMSTrack","live.hms.video.media.tracks.HMSAudioTrack"]},{"name":"open class HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, var source: String) : HMSTrack","description":"live.hms.video.media.tracks.HMSVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/index.html","searchKeys":["HMSVideoTrack","open class HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, var source: String) : HMSTrack","live.hms.video.media.tracks.HMSVideoTrack"]},{"name":"open class YuvFrame","description":"live.hms.video.utils.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/index.html","searchKeys":["YuvFrame","open class YuvFrame","live.hms.video.utils.YuvFrame"]},{"name":"open fun HMSAudioManagerLegacy(context: Context, analytics: AnalyticsEventsService, hmsAudioTrackSettings: HMSAudioTrackSettings, errorListener: IErrorListener, audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","description":"live.hms.video.audio.HMSAudioManagerLegacy.HMSAudioManagerLegacy","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/-h-m-s-audio-manager-legacy.html","searchKeys":["HMSAudioManagerLegacy","open fun HMSAudioManagerLegacy(context: Context, analytics: AnalyticsEventsService, hmsAudioTrackSettings: HMSAudioTrackSettings, errorListener: IErrorListener, audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","live.hms.video.audio.HMSAudioManagerLegacy.HMSAudioManagerLegacy"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManagerLegacy.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","open fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManagerLegacy.addAudioFocusChangeCallback"]},{"name":"open fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener? = null)","description":"live.hms.video.media.tracks.HMSVideoTrack.addSink","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/add-sink.html","searchKeys":["addSink","open fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener? = null)","live.hms.video.media.tracks.HMSVideoTrack.addSink"]},{"name":"open fun clearCommunicationDevice()","description":"live.hms.video.audio.manager.AudioManagerCompat.clearCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/clear-communication-device.html","searchKeys":["clearCommunicationDevice","open fun clearCommunicationDevice()","live.hms.video.audio.manager.AudioManagerCompat.clearCommunicationDevice"]},{"name":"open fun create(context: Context): AudioManagerCompat","description":"live.hms.video.audio.manager.AudioManagerCompat.create","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/create.html","searchKeys":["create","open fun create(context: Context): AudioManagerCompat","live.hms.video.audio.manager.AudioManagerCompat.create"]},{"name":"open fun dispose()","description":"live.hms.video.utils.YuvFrame.dispose","location":"lib/live.hms.video.utils/-yuv-frame/dispose.html","searchKeys":["dispose","open fun dispose()","live.hms.video.utils.YuvFrame.dispose"]},{"name":"open fun fromVideoFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","description":"live.hms.video.utils.YuvFrame.fromVideoFrame","location":"lib/live.hms.video.utils/-yuv-frame/from-video-frame.html","searchKeys":["fromVideoFrame","open fun fromVideoFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","live.hms.video.utils.YuvFrame.fromVideoFrame"]},{"name":"open fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.HMSAudioManagerLegacy.getAudioDevicesInfoList","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","open fun getAudioDevicesInfoList(): List","live.hms.video.audio.HMSAudioManagerLegacy.getAudioDevicesInfoList"]},{"name":"open fun getAvailableCommunicationDevices(): List","description":"live.hms.video.audio.manager.AudioManagerCompat.getAvailableCommunicationDevices","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-available-communication-devices.html","searchKeys":["getAvailableCommunicationDevices","open fun getAvailableCommunicationDevices(): List","live.hms.video.audio.manager.AudioManagerCompat.getAvailableCommunicationDevices"]},{"name":"open fun getBitmap(): Bitmap","description":"live.hms.video.utils.YuvFrame.getBitmap","location":"lib/live.hms.video.utils/-yuv-frame/get-bitmap.html","searchKeys":["getBitmap","open fun getBitmap(): Bitmap","live.hms.video.utils.YuvFrame.getBitmap"]},{"name":"open fun getCommunicationDevice(): AudioDeviceInfo","description":"live.hms.video.audio.manager.AudioManagerCompat.getCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-communication-device.html","searchKeys":["getCommunicationDevice","open fun getCommunicationDevice(): AudioDeviceInfo","live.hms.video.audio.manager.AudioManagerCompat.getCommunicationDevice"]},{"name":"open fun getConnectedBluetoothDevice(): AudioDeviceInfo","description":"live.hms.video.audio.manager.AudioManagerCompat.getConnectedBluetoothDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-connected-bluetooth-device.html","searchKeys":["getConnectedBluetoothDevice","open fun getConnectedBluetoothDevice(): AudioDeviceInfo","live.hms.video.audio.manager.AudioManagerCompat.getConnectedBluetoothDevice"]},{"name":"open fun getMode(): Int","description":"live.hms.video.audio.manager.AudioManagerCompat.getMode","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-mode.html","searchKeys":["getMode","open fun getMode(): Int","live.hms.video.audio.manager.AudioManagerCompat.getMode"]},{"name":"open fun getVoiceCallVolume(): Float","description":"live.hms.video.audio.manager.AudioManagerCompat.getVoiceCallVolume","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-voice-call-volume.html","searchKeys":["getVoiceCallVolume","open fun getVoiceCallVolume(): Float","live.hms.video.audio.manager.AudioManagerCompat.getVoiceCallVolume"]},{"name":"open fun hasData(): Boolean","description":"live.hms.video.utils.YuvFrame.hasData","location":"lib/live.hms.video.utils/-yuv-frame/has-data.html","searchKeys":["hasData","open fun hasData(): Boolean","live.hms.video.utils.YuvFrame.hasData"]},{"name":"open fun hasEarpiece(context: Context): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.hasEarpiece","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/has-earpiece.html","searchKeys":["hasEarpiece","open fun hasEarpiece(context: Context): Boolean","live.hms.video.audio.manager.AudioManagerCompat.hasEarpiece"]},{"name":"open fun isBluetoothConnected(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothConnected","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-connected.html","searchKeys":["isBluetoothConnected","open fun isBluetoothConnected(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothConnected"]},{"name":"open fun isBluetoothHeadsetAvailable(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothHeadsetAvailable","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-headset-available.html","searchKeys":["isBluetoothHeadsetAvailable","open fun isBluetoothHeadsetAvailable(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothHeadsetAvailable"]},{"name":"open fun isBluetoothScoAvailableOffCall(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoAvailableOffCall","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-sco-available-off-call.html","searchKeys":["isBluetoothScoAvailableOffCall","open fun isBluetoothScoAvailableOffCall(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoAvailableOffCall"]},{"name":"open fun isBluetoothScoOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-sco-on.html","searchKeys":["isBluetoothScoOn","open fun isBluetoothScoOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoOn"]},{"name":"open fun isMicrophoneMute(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isMicrophoneMute","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-microphone-mute.html","searchKeys":["isMicrophoneMute","open fun isMicrophoneMute(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isMicrophoneMute"]},{"name":"open fun isSpeakerphoneOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isSpeakerphoneOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-speakerphone-on.html","searchKeys":["isSpeakerphoneOn","open fun isSpeakerphoneOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isSpeakerphoneOn"]},{"name":"open fun isWiredHeadsetOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isWiredHeadsetOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-wired-headset-on.html","searchKeys":["isWiredHeadsetOn","open fun isWiredHeadsetOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isWiredHeadsetOn"]},{"name":"open fun onAudioDeviceInfoChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioInfoDevices: List)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceInfoChanged","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-audio-device-info-changed.html","searchKeys":["onAudioDeviceInfoChanged","open fun onAudioDeviceInfoChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioInfoDevices: List)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceInfoChanged"]},{"name":"open fun onAudioLevelChanged(decibel: Int)","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onAudioLevelChanged","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-audio-level-changed.html","searchKeys":["onAudioLevelChanged","open fun onAudioLevelChanged(decibel: Int)","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onAudioLevelChanged"]},{"name":"open fun onLocalAudioStats(audioStats: HMSLocalAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-local-audio-stats.html","searchKeys":["onLocalAudioStats","open fun onLocalAudioStats(audioStats: HMSLocalAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onLocalAudioStats"]},{"name":"open fun onLocalVideoStats(videoStats: List, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-local-video-stats.html","searchKeys":["onLocalVideoStats","open fun onLocalVideoStats(videoStats: List, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onLocalVideoStats"]},{"name":"open fun onLogToFile(fileName: HMSLogger.LogFiles, tag: String, message: MutableMap)","description":"live.hms.video.utils.HMSLogger.Loggable.onLogToFile","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/on-log-to-file.html","searchKeys":["onLogToFile","open fun onLogToFile(fileName: HMSLogger.LogFiles, tag: String, message: MutableMap)","live.hms.video.utils.HMSLogger.Loggable.onLogToFile"]},{"name":"open fun onPermissionsRequested(permissions: List)","description":"live.hms.video.sdk.RequestPermissionInterface.onPermissionsRequested","location":"lib/live.hms.video.sdk/-request-permission-interface/on-permissions-requested.html","searchKeys":["onPermissionsRequested","open fun onPermissionsRequested(permissions: List)","live.hms.video.sdk.RequestPermissionInterface.onPermissionsRequested"]},{"name":"open fun onRTCStats(rtcStats: HMSRTCStatsReport)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-r-t-c-stats.html","searchKeys":["onRTCStats","open fun onRTCStats(rtcStats: HMSRTCStatsReport)","live.hms.video.connection.stats.HMSStatsObserver.onRTCStats"]},{"name":"open fun onReconnected()","description":"live.hms.video.sdk.HMSUpdateListener.onReconnected","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-reconnected.html","searchKeys":["onReconnected","open fun onReconnected()","live.hms.video.sdk.HMSUpdateListener.onReconnected"]},{"name":"open fun onReconnecting(error: HMSException)","description":"live.hms.video.sdk.HMSUpdateListener.onReconnecting","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-reconnecting.html","searchKeys":["onReconnecting","open fun onReconnecting(error: HMSException)","live.hms.video.sdk.HMSUpdateListener.onReconnecting"]},{"name":"open fun onRemoteAudioStats(audioStats: HMSRemoteAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-remote-audio-stats.html","searchKeys":["onRemoteAudioStats","open fun onRemoteAudioStats(audioStats: HMSRemoteAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onRemoteAudioStats"]},{"name":"open fun onRemoteVideoStats(videoStats: HMSRemoteVideoStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-remote-video-stats.html","searchKeys":["onRemoteVideoStats","open fun onRemoteVideoStats(videoStats: HMSRemoteVideoStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onRemoteVideoStats"]},{"name":"open fun onRemovedFromRoom(notification: HMSRemovedFromRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onRemovedFromRoom","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-removed-from-room.html","searchKeys":["onRemovedFromRoom","open fun onRemovedFromRoom(notification: HMSRemovedFromRoom)","live.hms.video.sdk.HMSUpdateListener.onRemovedFromRoom"]},{"name":"open fun onSessionStoreAvailable(sessionStore: HmsSessionStore)","description":"live.hms.video.sdk.HMSUpdateListener.onSessionStoreAvailable","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-session-store-available.html","searchKeys":["onSessionStoreAvailable","open fun onSessionStoreAvailable(sessionStore: HmsSessionStore)","live.hms.video.sdk.HMSUpdateListener.onSessionStoreAvailable"]},{"name":"open fun onTranscripts(transcripts: HmsTranscripts)","description":"live.hms.video.sdk.HMSUpdateListener.onTranscripts","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-transcripts.html","searchKeys":["onTranscripts","open fun onTranscripts(transcripts: HmsTranscripts)","live.hms.video.sdk.HMSUpdateListener.onTranscripts"]},{"name":"open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","description":"live.hms.video.sdk.HMSPreviewListener.peerListUpdated","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/peer-list-updated.html","searchKeys":["peerListUpdated","open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","live.hms.video.sdk.HMSPreviewListener.peerListUpdated"]},{"name":"open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","description":"live.hms.video.sdk.HMSUpdateListener.peerListUpdated","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/peer-list-updated.html","searchKeys":["peerListUpdated","open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","live.hms.video.sdk.HMSUpdateListener.peerListUpdated"]},{"name":"open fun registerAudioDeviceCallback(deviceCallback: AudioDeviceCallback, handler: Handler)","description":"live.hms.video.audio.manager.AudioManagerCompat.registerAudioDeviceCallback","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/register-audio-device-callback.html","searchKeys":["registerAudioDeviceCallback","open fun registerAudioDeviceCallback(deviceCallback: AudioDeviceCallback, handler: Handler)","live.hms.video.audio.manager.AudioManagerCompat.registerAudioDeviceCallback"]},{"name":"open fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManagerLegacy.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","open fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManagerLegacy.removeAudioFocusChangeCallback"]},{"name":"open fun removeSink(sink: VideoSink)","description":"live.hms.video.media.tracks.HMSVideoTrack.removeSink","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/remove-sink.html","searchKeys":["removeSink","open fun removeSink(sink: VideoSink)","live.hms.video.media.tracks.HMSVideoTrack.removeSink"]},{"name":"open fun ringVolumeWithMinimum(): Float","description":"live.hms.video.audio.manager.AudioManagerCompat.ringVolumeWithMinimum","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/ring-volume-with-minimum.html","searchKeys":["ringVolumeWithMinimum","open fun ringVolumeWithMinimum(): Float","live.hms.video.audio.manager.AudioManagerCompat.ringVolumeWithMinimum"]},{"name":"open fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.HMSAudioManagerLegacy.selectAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/select-audio-device.html","searchKeys":["selectAudioDevice","open fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.HMSAudioManagerLegacy.selectAudioDevice"]},{"name":"open fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.HMSAudioManagerLegacy.setAudioMode","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/set-audio-mode.html","searchKeys":["setAudioMode","open fun setAudioMode(audioMode: Int)","live.hms.video.audio.HMSAudioManagerLegacy.setAudioMode"]},{"name":"open fun setBluetoothScoOn(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setBluetoothScoOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-bluetooth-sco-on.html","searchKeys":["setBluetoothScoOn","open fun setBluetoothScoOn(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setBluetoothScoOn"]},{"name":"open fun setCommunicationDevice(device: AudioDeviceInfo): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.setCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-communication-device.html","searchKeys":["setCommunicationDevice","open fun setCommunicationDevice(device: AudioDeviceInfo): Boolean","live.hms.video.audio.manager.AudioManagerCompat.setCommunicationDevice"]},{"name":"open fun setKey(key: String)","description":"live.hms.video.plugin.video.HMSVideoPlugin.setKey","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/set-key.html","searchKeys":["setKey","open fun setKey(key: String)","live.hms.video.plugin.video.HMSVideoPlugin.setKey"]},{"name":"open fun setMicrophoneMute(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setMicrophoneMute","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-microphone-mute.html","searchKeys":["setMicrophoneMute","open fun setMicrophoneMute(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setMicrophoneMute"]},{"name":"open fun setMode(modeInCommunication: Int)","description":"live.hms.video.audio.manager.AudioManagerCompat.setMode","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-mode.html","searchKeys":["setMode","open fun setMode(modeInCommunication: Int)","live.hms.video.audio.manager.AudioManagerCompat.setMode"]},{"name":"open fun setSpeakerphoneOn(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setSpeakerphoneOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-speakerphone-on.html","searchKeys":["setSpeakerphoneOn","open fun setSpeakerphoneOn(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setSpeakerphoneOn"]},{"name":"open fun start()","description":"live.hms.video.audio.HMSAudioManagerLegacy.start","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/start.html","searchKeys":["start","open fun start()","live.hms.video.audio.HMSAudioManagerLegacy.start"]},{"name":"open fun startBluetoothSco()","description":"live.hms.video.audio.manager.AudioManagerCompat.startBluetoothSco","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/start-bluetooth-sco.html","searchKeys":["startBluetoothSco","open fun startBluetoothSco()","live.hms.video.audio.manager.AudioManagerCompat.startBluetoothSco"]},{"name":"open fun stop()","description":"live.hms.video.audio.HMSAudioManagerLegacy.stop","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/stop.html","searchKeys":["stop","open fun stop()","live.hms.video.audio.HMSAudioManagerLegacy.stop"]},{"name":"open fun stopBluetoothSco()","description":"live.hms.video.audio.manager.AudioManagerCompat.stopBluetoothSco","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/stop-bluetooth-sco.html","searchKeys":["stopBluetoothSco","open fun stopBluetoothSco()","live.hms.video.audio.manager.AudioManagerCompat.stopBluetoothSco"]},{"name":"open fun unregisterAudioDeviceCallback(deviceCallback: AudioDeviceCallback)","description":"live.hms.video.audio.manager.AudioManagerCompat.unregisterAudioDeviceCallback","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/unregister-audio-device-callback.html","searchKeys":["unregisterAudioDeviceCallback","open fun unregisterAudioDeviceCallback(deviceCallback: AudioDeviceCallback)","live.hms.video.audio.manager.AudioManagerCompat.unregisterAudioDeviceCallback"]},{"name":"open fun updateAudioDeviceState()","description":"live.hms.video.audio.HMSAudioManagerLegacy.updateAudioDeviceState","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/update-audio-device-state.html","searchKeys":["updateAudioDeviceState","open fun updateAudioDeviceState()","live.hms.video.audio.HMSAudioManagerLegacy.updateAudioDeviceState"]},{"name":"open fun valueOf(name: String): PhoneCallState","description":"live.hms.video.media.settings.PhoneCallState.valueOf","location":"lib/live.hms.video.media.settings/-phone-call-state/value-of.html","searchKeys":["valueOf","open fun valueOf(name: String): PhoneCallState","live.hms.video.media.settings.PhoneCallState.valueOf"]},{"name":"open fun values(): Array","description":"live.hms.video.media.settings.PhoneCallState.values","location":"lib/live.hms.video.media.settings/-phone-call-state/values.html","searchKeys":["values","open fun values(): Array","live.hms.video.media.settings.PhoneCallState.values"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"live.hms.video.media.tracks.HMSTrack.equals","location":"lib/live.hms.video.media.tracks/-h-m-s-track/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","live.hms.video.media.tracks.HMSTrack.equals"]},{"name":"open override fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","open override fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.manager.HMSAudioManagerApi31.addAudioFocusChangeCallback"]},{"name":"open override fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener?)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.addSink","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/add-sink.html","searchKeys":["addSink","open override fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener?)","live.hms.video.media.tracks.HMSRemoteVideoTrack.addSink"]},{"name":"open override fun close()","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.close","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/close.html","searchKeys":["close","open override fun close()","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.close"]},{"name":"open override fun close()","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.close","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/close.html","searchKeys":["close","open override fun close()","live.hms.video.sdk.OfflineAnalyticsPeerInfo.close"]},{"name":"open override fun createDecoder(codecType: VideoCodecInfo?): VideoDecoder","description":"live.hms.video.factories.HMSVideoDecoderFactory.createDecoder","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/create-decoder.html","searchKeys":["createDecoder","open override fun createDecoder(codecType: VideoCodecInfo?): VideoDecoder","live.hms.video.factories.HMSVideoDecoderFactory.createDecoder"]},{"name":"open override fun getAudioDevices(): Set","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevices","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-audio-devices.html","searchKeys":["getAudioDevices","open override fun getAudioDevices(): Set","live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevices"]},{"name":"open override fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevicesInfoList","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","open override fun getAudioDevicesInfoList(): List","live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevicesInfoList"]},{"name":"open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getAudioProcessingFactory"]},{"name":"open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","live.hms.video.factories.noisecancellation.NoiseCancellationFake.getAudioProcessingFactory"]},{"name":"open override fun getName(): String","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.getName","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.video.plugin.video.utils.HMSBitmapPlugin.getName"]},{"name":"open override fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","open override fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.getNoiseCancellationEnabled"]},{"name":"open override fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","open override fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getNoiseCancellationEnabled"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.getPluginType","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.video.plugin.video.utils.HMSBitmapPlugin.getPluginType"]},{"name":"open override fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getSelectedAudioDevice","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-selected-audio-device.html","searchKeys":["getSelectedAudioDevice","open override fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","live.hms.video.audio.manager.HMSAudioManagerApi31.getSelectedAudioDevice"]},{"name":"open override fun isStarted(): Boolean","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.isStarted","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/is-started.html","searchKeys":["isStarted","open override fun isStarted(): Boolean","live.hms.video.audio.manager.HMSAudioManagerApi31.isStarted"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.isSupported","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.video.plugin.video.utils.HMSBitmapPlugin.isSupported"]},{"name":"open override fun jniLoad(context: Context): NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.jniLoad","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/jni-load.html","searchKeys":["jniLoad","open override fun jniLoad(context: Context): NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.jniLoad"]},{"name":"open override fun onBind(intent: Intent?): IBinder","description":"live.hms.video.services.HMSScreenCaptureService.onBind","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-bind.html","searchKeys":["onBind","open override fun onBind(intent: Intent?): IBinder","live.hms.video.services.HMSScreenCaptureService.onBind"]},{"name":"open override fun onDestroy()","description":"live.hms.video.services.HMSScreenCaptureService.onDestroy","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-destroy.html","searchKeys":["onDestroy","open override fun onDestroy()","live.hms.video.services.HMSScreenCaptureService.onDestroy"]},{"name":"open override fun onReceive(context: Context?, intent: Intent?)","description":"live.hms.video.services.LogAlarmManager.onReceive","location":"lib/live.hms.video.services/-log-alarm-manager/on-receive.html","searchKeys":["onReceive","open override fun onReceive(context: Context?, intent: Intent?)","live.hms.video.services.LogAlarmManager.onReceive"]},{"name":"open override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int","description":"live.hms.video.services.HMSScreenCaptureService.onStartCommand","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-start-command.html","searchKeys":["onStartCommand","open override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int","live.hms.video.services.HMSScreenCaptureService.onStartCommand"]},{"name":"open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.processVideoFrame","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.processVideoFrame"]},{"name":"open override fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","open override fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.manager.HMSAudioManagerApi31.removeAudioFocusChangeCallback"]},{"name":"open override fun removeSink(sink: VideoSink)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.removeSink","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/remove-sink.html","searchKeys":["removeSink","open override fun removeSink(sink: VideoSink)","live.hms.video.media.tracks.HMSRemoteVideoTrack.removeSink"]},{"name":"open override fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.selectAudioDevice","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/select-audio-device.html","searchKeys":["selectAudioDevice","open override fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.manager.HMSAudioManagerApi31.selectAudioDevice"]},{"name":"open override fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.setAudioMode","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/set-audio-mode.html","searchKeys":["setAudioMode","open override fun setAudioMode(audioMode: Int)","live.hms.video.audio.manager.HMSAudioManagerApi31.setAudioMode"]},{"name":"open override fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-description.html","searchKeys":["setDescription","open override fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalAudioTrack.setDescription"]},{"name":"open override fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-description.html","searchKeys":["setDescription","open override fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalVideoTrack.setDescription"]},{"name":"open override fun setKey(key: String)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.setKey","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/set-key.html","searchKeys":["setKey","open override fun setKey(key: String)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.setKey"]},{"name":"open override fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-mute.html","searchKeys":["setMute","open override fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalAudioTrack.setMute"]},{"name":"open override fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-mute.html","searchKeys":["setMute","open override fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalVideoTrack.setMute"]},{"name":"open override fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","open override fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationFake.setNoiseCancellationEnabled"]},{"name":"open override fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","open override fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.setNoiseCancellationEnabled"]},{"name":"open override fun start()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.start","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/start.html","searchKeys":["start","open override fun start()","live.hms.video.audio.manager.HMSAudioManagerApi31.start"]},{"name":"open override fun stop()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.stop","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.audio.manager.HMSAudioManagerApi31.stop"]},{"name":"open override fun stop()","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.stop","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.plugin.video.utils.HMSBitmapPlugin.stop"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.error.HMSException.toAnalyticsProperties","location":"lib/live.hms.video.error/-h-m-s-exception/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.error.HMSException.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSAudioTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSAudioTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSVideoTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSVideoTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toString(): String","description":"live.hms.video.connection.stats.HMSRTCStats.toString","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.connection.stats.HMSRTCStats.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.connection.stats.HMSRTCStatsReport.toString","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.connection.stats.HMSRTCStatsReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.toString","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.ConnectivityCheckResult.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.IceCandidatePair.toString","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.IceCandidatePair.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.MediaServerReport.toString","location":"lib/live.hms.video.diagnostics.models/-media-server-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.MediaServerReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.SignallingReport.toString","location":"lib/live.hms.video.diagnostics.models/-signalling-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.SignallingReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.error.HMSException.toString","location":"lib/live.hms.video.error/-h-m-s-exception/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.error.HMSException.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSLocalAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSLocalVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSRemoteAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSRemoteVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSLocalPeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSLocalPeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSPeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSPeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSRemotePeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSRemotePeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSSpeaker.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSSpeaker.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.signal.init.HMSRoomLayout.toString","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.signal.init.HMSRoomLayout.toString"]},{"name":"open override val audio_concealed_samples: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealed_samples","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_concealed_samples.html","searchKeys":["audio_concealed_samples","open override val audio_concealed_samples: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealed_samples"]},{"name":"open override val audio_concealment_events: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealment_events","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_concealment_events.html","searchKeys":["audio_concealment_events","open override val audio_concealment_events: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealment_events"]},{"name":"open override val audio_level_high_seconds: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_level_high_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_level_high_seconds.html","searchKeys":["audio_level_high_seconds","open override val audio_level_high_seconds: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_level_high_seconds"]},{"name":"open override val audio_total_samples_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_total_samples_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_total_samples_received.html","searchKeys":["audio_total_samples_received","open override val audio_total_samples_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_total_samples_received"]},{"name":"open override val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","open override val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgAvailableOutgoingBitrateBps"]},{"name":"open override val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","open override val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgAvailableOutgoingBitrateBps"]},{"name":"open override val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","open override val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgBitrateBps"]},{"name":"open override val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","open override val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgBitrateBps"]},{"name":"open override val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-jitter-ms.html","searchKeys":["avgJitterMs","open override val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgJitterMs"]},{"name":"open override val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-jitter-ms.html","searchKeys":["avgJitterMs","open override val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgJitterMs"]},{"name":"open override val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","open override val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgRoundTripTimeMs"]},{"name":"open override val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","open override val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgRoundTripTimeMs"]},{"name":"open override val avg_av_sync_ms: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_av_sync_ms","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_av_sync_ms.html","searchKeys":["avg_av_sync_ms","open override val avg_av_sync_ms: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_av_sync_ms"]},{"name":"open override val avg_frames_decoded_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_decoded_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_decoded_per_sec.html","searchKeys":["avg_frames_decoded_per_sec","open override val avg_frames_decoded_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_decoded_per_sec"]},{"name":"open override val avg_frames_dropped_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_dropped_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_dropped_per_sec.html","searchKeys":["avg_frames_dropped_per_sec","open override val avg_frames_dropped_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_dropped_per_sec"]},{"name":"open override val avg_frames_received_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_received_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_received_per_sec.html","searchKeys":["avg_frames_received_per_sec","open override val avg_frames_received_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_received_per_sec"]},{"name":"open override val avg_jitter_buffer_delay: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_jitter_buffer_delay.html","searchKeys":["avg_jitter_buffer_delay","open override val avg_jitter_buffer_delay: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_jitter_buffer_delay"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Audio.bytesTransported","location":"lib/live.hms.video.connection.degredation/-audio/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Audio.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Video.bytesTransported","location":"lib/live.hms.video.connection.degredation/-video/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Video.bytesTransported"]},{"name":"open override val coroutineContext: CoroutineContext","description":"live.hms.video.utils.HMSCoroutineScope.coroutineContext","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/coroutine-context.html","searchKeys":["coroutineContext","open override val coroutineContext: CoroutineContext","live.hms.video.utils.HMSCoroutineScope.coroutineContext"]},{"name":"open override val fec_packets_discarded: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_discarded","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/fec_packets_discarded.html","searchKeys":["fec_packets_discarded","open override val fec_packets_discarded: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_discarded"]},{"name":"open override val fec_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/fec_packets_received.html","searchKeys":["fec_packets_received","open override val fec_packets_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_received"]},{"name":"open override val frame_height: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_height","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/frame_height.html","searchKeys":["frame_height","open override val frame_height: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_height"]},{"name":"open override val frame_width: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_width","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/frame_width.html","searchKeys":["frame_width","open override val frame_width: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_width"]},{"name":"open override val freeze_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/freeze_count.html","searchKeys":["freeze_count","open override val freeze_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_count"]},{"name":"open override val freeze_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/freeze_duration_seconds.html","searchKeys":["freeze_duration_seconds","open override val freeze_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_duration_seconds"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Audio.jitter","location":"lib/live.hms.video.connection.degredation/-audio/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Audio.jitter"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Video.jitter","location":"lib/live.hms.video.connection.degredation/-video/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Video.jitter"]},{"name":"open override val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.Audio.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","open override val jitterBufferDelay: Double?","live.hms.video.connection.degredation.Audio.jitterBufferDelay"]},{"name":"open override val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.Video.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-video/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","open override val jitterBufferDelay: Double?","live.hms.video.connection.degredation.Video.jitterBufferDelay"]},{"name":"open override val jitter_buffer_delay: Double","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/jitter_buffer_delay.html","searchKeys":["jitter_buffer_delay","open override val jitter_buffer_delay: Double","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.jitter_buffer_delay"]},{"name":"open override val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.Audio.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-audio/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","open override val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.Audio.lastPacketReceivedTimestamp"]},{"name":"open override val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.Video.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-video/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","open override val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.Video.lastPacketReceivedTimestamp"]},{"name":"open override val message: String","description":"live.hms.video.error.HMSException.message","location":"lib/live.hms.video.error/-h-m-s-exception/message.html","searchKeys":["message","open override val message: String","live.hms.video.error.HMSException.message"]},{"name":"open override val packetsLost: Int?","description":"live.hms.video.connection.degredation.Audio.packetsLost","location":"lib/live.hms.video.connection.degredation/-audio/packets-lost.html","searchKeys":["packetsLost","open override val packetsLost: Int?","live.hms.video.connection.degredation.Audio.packetsLost"]},{"name":"open override val packetsLost: Int?","description":"live.hms.video.connection.degredation.Video.packetsLost","location":"lib/live.hms.video.connection.degredation/-video/packets-lost.html","searchKeys":["packetsLost","open override val packetsLost: Int?","live.hms.video.connection.degredation.Video.packetsLost"]},{"name":"open override val packetsReceived: Long?","description":"live.hms.video.connection.degredation.Audio.packetsReceived","location":"lib/live.hms.video.connection.degredation/-audio/packets-received.html","searchKeys":["packetsReceived","open override val packetsReceived: Long?","live.hms.video.connection.degredation.Audio.packetsReceived"]},{"name":"open override val packetsReceived: Long?","description":"live.hms.video.connection.degredation.Video.packetsReceived","location":"lib/live.hms.video.connection.degredation/-video/packets-received.html","searchKeys":["packetsReceived","open override val packetsReceived: Long?","live.hms.video.connection.degredation.Video.packetsReceived"]},{"name":"open override val pause_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/pause_count.html","searchKeys":["pause_count","open override val pause_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_count"]},{"name":"open override val pause_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/pause_duration_seconds.html","searchKeys":["pause_duration_seconds","open override val pause_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_duration_seconds"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Audio.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-audio/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Audio.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Video.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-video/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Video.remoteTimestamp"]},{"name":"open override val source: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/source.html","searchKeys":["source","open override val source: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.source"]},{"name":"open override val source: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/source.html","searchKeys":["source","open override val source: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.source"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Audio.ssrc","location":"lib/live.hms.video.connection.degredation/-audio/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Audio.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Video.ssrc","location":"lib/live.hms.video.connection.degredation/-video/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Video.ssrc"]},{"name":"open override val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/ssrc.html","searchKeys":["ssrc","open override val ssrc: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.ssrc"]},{"name":"open override val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/ssrc.html","searchKeys":["ssrc","open override val ssrc: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.ssrc"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.timestamp"]},{"name":"open override val timestampUs: Double?","description":"live.hms.video.connection.degredation.Audio.timestampUs","location":"lib/live.hms.video.connection.degredation/-audio/timestamp-us.html","searchKeys":["timestampUs","open override val timestampUs: Double?","live.hms.video.connection.degredation.Audio.timestampUs"]},{"name":"open override val timestampUs: Double?","description":"live.hms.video.connection.degredation.Video.timestampUs","location":"lib/live.hms.video.connection.degredation/-video/timestamp-us.html","searchKeys":["timestampUs","open override val timestampUs: Double?","live.hms.video.connection.degredation.Video.timestampUs"]},{"name":"open override val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/total-packets-lost.html","searchKeys":["totalPacketsLost","open override val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.totalPacketsLost"]},{"name":"open override val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total-packets-lost.html","searchKeys":["totalPacketsLost","open override val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketsLost"]},{"name":"open override val total_nack_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_nack_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/total_nack_count.html","searchKeys":["total_nack_count","open override val total_nack_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_nack_count"]},{"name":"open override val total_packets_lost: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_lost","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_packets_lost.html","searchKeys":["total_packets_lost","open override val total_packets_lost: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_lost"]},{"name":"open override val total_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_packets_received.html","searchKeys":["total_packets_received","open override val total_packets_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_received"]},{"name":"open override val total_pli_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_pli_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/total_pli_count.html","searchKeys":["total_pli_count","open override val total_pli_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_pli_count"]},{"name":"open override val total_samples_duration: Float","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_samples_duration","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_samples_duration.html","searchKeys":["total_samples_duration","open override val total_samples_duration: Float","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_samples_duration"]},{"name":"open override val trackId: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/track-id.html","searchKeys":["trackId","open override val trackId: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.trackId"]},{"name":"open override val trackId: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/track-id.html","searchKeys":["trackId","open override val trackId: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.trackId"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Audio.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-audio/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Audio.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Video.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-video/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Video.trackIdentifier"]},{"name":"open override val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSAudioTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/type.html","searchKeys":["type","open override val type: HMSTrackType","live.hms.video.media.tracks.HMSAudioTrack.type"]},{"name":"open override val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSVideoTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/type.html","searchKeys":["type","open override val type: HMSTrackType","live.hms.video.media.tracks.HMSVideoTrack.type"]},{"name":"open override var audioTrack: HMSLocalAudioTrack? = null","description":"live.hms.video.sdk.models.HMSLocalPeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/audio-track.html","searchKeys":["audioTrack","open override var audioTrack: HMSLocalAudioTrack? = null","live.hms.video.sdk.models.HMSLocalPeer.audioTrack"]},{"name":"open override var audioTrack: HMSRemoteAudioTrack? = null","description":"live.hms.video.sdk.models.HMSRemotePeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/audio-track.html","searchKeys":["audioTrack","open override var audioTrack: HMSRemoteAudioTrack? = null","live.hms.video.sdk.models.HMSRemotePeer.audioTrack"]},{"name":"open override var isDegraded: Boolean = false","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.isDegraded","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/is-degraded.html","searchKeys":["isDegraded","open override var isDegraded: Boolean = false","live.hms.video.media.tracks.HMSRemoteVideoTrack.isDegraded"]},{"name":"open override var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","open override var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteAudioTrack.isPlaybackAllowed"]},{"name":"open override var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","open override var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteVideoTrack.isPlaybackAllowed"]},{"name":"open override var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/ssrc.html","searchKeys":["ssrc","open override var ssrc: Long","live.hms.video.media.tracks.HMSRemoteAudioTrack.ssrc"]},{"name":"open override var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/ssrc.html","searchKeys":["ssrc","open override var ssrc: Long","live.hms.video.media.tracks.HMSRemoteVideoTrack.ssrc"]},{"name":"open override var videoTrack: HMSLocalVideoTrack? = null","description":"live.hms.video.sdk.models.HMSLocalPeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/video-track.html","searchKeys":["videoTrack","open override var videoTrack: HMSLocalVideoTrack? = null","live.hms.video.sdk.models.HMSLocalPeer.videoTrack"]},{"name":"open override var videoTrack: HMSRemoteVideoTrack? = null","description":"live.hms.video.sdk.models.HMSRemotePeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/video-track.html","searchKeys":["videoTrack","open override var videoTrack: HMSRemoteVideoTrack? = null","live.hms.video.sdk.models.HMSRemotePeer.videoTrack"]},{"name":"open suspend override fun init()","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.init","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/init.html","searchKeys":["init","open suspend override fun init()","live.hms.video.plugin.video.utils.HMSBitmapPlugin.init"]},{"name":"open val audioDevices: Set","description":"live.hms.video.audio.HMSAudioManagerLegacy.audioDevices","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/audio-devices.html","searchKeys":["audioDevices","open val audioDevices: Set","live.hms.video.audio.HMSAudioManagerLegacy.audioDevices"]},{"name":"open val isStarted: Boolean","description":"live.hms.video.audio.HMSAudioManagerLegacy.isStarted","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/is-started.html","searchKeys":["isStarted","open val isStarted: Boolean","live.hms.video.audio.HMSAudioManagerLegacy.isStarted"]},{"name":"open val ncLogTag: String","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.ncLogTag","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/nc-log-tag.html","searchKeys":["ncLogTag","open val ncLogTag: String","live.hms.video.factories.noisecancellation.NoiseCancellation.ncLogTag"]},{"name":"open val selectedAudioDevice: HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManagerLegacy.selectedAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/selected-audio-device.html","searchKeys":["selectedAudioDevice","open val selectedAudioDevice: HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManagerLegacy.selectedAudioDevice"]},{"name":"open var height: Int","description":"live.hms.video.utils.YuvFrame.height","location":"lib/live.hms.video.utils/-yuv-frame/height.html","searchKeys":["height","open var height: Int","live.hms.video.utils.YuvFrame.height"]},{"name":"open var isDegraded: Boolean = false","description":"live.hms.video.media.tracks.HMSVideoTrack.isDegraded","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/is-degraded.html","searchKeys":["isDegraded","open var isDegraded: Boolean = false","live.hms.video.media.tracks.HMSVideoTrack.isDegraded"]},{"name":"open var nv21Buffer: Array","description":"live.hms.video.utils.YuvFrame.nv21Buffer","location":"lib/live.hms.video.utils/-yuv-frame/nv21-buffer.html","searchKeys":["nv21Buffer","open var nv21Buffer: Array","live.hms.video.utils.YuvFrame.nv21Buffer"]},{"name":"open var packetLoss: Long = 0","description":"live.hms.video.connection.degredation.Track.LocalTrack.packetLoss","location":"lib/live.hms.video.connection.degredation/-track/-local-track/packet-loss.html","searchKeys":["packetLoss","open var packetLoss: Long = 0","live.hms.video.connection.degredation.Track.LocalTrack.packetLoss"]},{"name":"open var rotationDegree: Int","description":"live.hms.video.utils.YuvFrame.rotationDegree","location":"lib/live.hms.video.utils/-yuv-frame/rotation-degree.html","searchKeys":["rotationDegree","open var rotationDegree: Int","live.hms.video.utils.YuvFrame.rotationDegree"]},{"name":"open var timestamp: Long","description":"live.hms.video.utils.YuvFrame.timestamp","location":"lib/live.hms.video.utils/-yuv-frame/timestamp.html","searchKeys":["timestamp","open var timestamp: Long","live.hms.video.utils.YuvFrame.timestamp"]},{"name":"open var width: Int","description":"live.hms.video.utils.YuvFrame.width","location":"lib/live.hms.video.utils/-yuv-frame/width.html","searchKeys":["width","open var width: Int","live.hms.video.utils.YuvFrame.width"]},{"name":"paused","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.paused","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/paused/index.html","searchKeys":["paused","paused","live.hms.video.sdk.peerlist.models.BeamRecordingStates.paused"]},{"name":"resultsupdated","description":"live.hms.video.polls.models.HMSPollUpdateType.resultsupdated","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/resultsupdated/index.html","searchKeys":["resultsupdated","resultsupdated","live.hms.video.polls.models.HMSPollUpdateType.resultsupdated"]},{"name":"resumed","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.resumed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/resumed/index.html","searchKeys":["resumed","resumed","live.hms.video.sdk.peerlist.models.BeamRecordingStates.resumed"]},{"name":"sealed class AudioManagerUtil","description":"live.hms.video.audio.manager.AudioManagerUtil","location":"lib/live.hms.video.audio.manager/-audio-manager-util/index.html","searchKeys":["AudioManagerUtil","sealed class AudioManagerUtil","live.hms.video.audio.manager.AudioManagerUtil"]},{"name":"sealed class AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/index.html","searchKeys":["AvailabilityStatus","sealed class AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus"]},{"name":"sealed class ConnectionInfo : WebrtcStats","description":"live.hms.video.connection.degredation.ConnectionInfo","location":"lib/live.hms.video.connection.degredation/-connection-info/index.html","searchKeys":["ConnectionInfo","sealed class ConnectionInfo : WebrtcStats","live.hms.video.connection.degredation.ConnectionInfo"]},{"name":"sealed class Features","description":"live.hms.video.sdk.featureflags.Features","location":"lib/live.hms.video.sdk.featureflags/-features/index.html","searchKeys":["Features","sealed class Features","live.hms.video.sdk.featureflags.Features"]},{"name":"sealed class HMSLocalStats : HMSStats","description":"live.hms.video.connection.stats.HMSStats.HMSLocalStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/-h-m-s-local-stats/index.html","searchKeys":["HMSLocalStats","sealed class HMSLocalStats : HMSStats","live.hms.video.connection.stats.HMSStats.HMSLocalStats"]},{"name":"sealed class HMSRemoteStats : HMSStats","description":"live.hms.video.connection.stats.HMSStats.HMSRemoteStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/-h-m-s-remote-stats/index.html","searchKeys":["HMSRemoteStats","sealed class HMSRemoteStats : HMSStats","live.hms.video.connection.stats.HMSStats.HMSRemoteStats"]},{"name":"sealed class HMSStats","description":"live.hms.video.connection.stats.HMSStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/index.html","searchKeys":["HMSStats","sealed class HMSStats","live.hms.video.connection.stats.HMSStats"]},{"name":"sealed class HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/index.html","searchKeys":["HMSWhiteboardUpdate","sealed class HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate"]},{"name":"sealed class Track : WebrtcStats","description":"live.hms.video.connection.degredation.Track","location":"lib/live.hms.video.connection.degredation/-track/index.html","searchKeys":["Track","sealed class Track : WebrtcStats","live.hms.video.connection.degredation.Track"]},{"name":"sealed class WebrtcStats","description":"live.hms.video.connection.degredation.WebrtcStats","location":"lib/live.hms.video.connection.degredation/-webrtc-stats/index.html","searchKeys":["WebrtcStats","sealed class WebrtcStats","live.hms.video.connection.degredation.WebrtcStats"]},{"name":"shortAnswer","description":"live.hms.video.polls.models.question.HMSPollQuestionType.shortAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/short-answer/index.html","searchKeys":["shortAnswer","shortAnswer","live.hms.video.polls.models.question.HMSPollQuestionType.shortAnswer"]},{"name":"singleChoice","description":"live.hms.video.polls.models.question.HMSPollQuestionType.singleChoice","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/single-choice/index.html","searchKeys":["singleChoice","singleChoice","live.hms.video.polls.models.question.HMSPollQuestionType.singleChoice"]},{"name":"started","description":"live.hms.video.polls.models.HMSPollUpdateType.started","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/started/index.html","searchKeys":["started","started","live.hms.video.polls.models.HMSPollUpdateType.started"]},{"name":"started","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.started","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/started/index.html","searchKeys":["started","started","live.hms.video.sdk.peerlist.models.BeamRecordingStates.started"]},{"name":"started","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.started","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/started/index.html","searchKeys":["started","started","live.hms.video.sdk.peerlist.models.BeamStreamingStates.started"]},{"name":"stopped","description":"live.hms.video.polls.models.HMSPollUpdateType.stopped","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.polls.models.HMSPollUpdateType.stopped"]},{"name":"stopped","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.stopped","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.sdk.peerlist.models.BeamRecordingStates.stopped"]},{"name":"stopped","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.stopped","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.sdk.peerlist.models.BeamStreamingStates.stopped"]},{"name":"suspend fun get(): T","description":"live.hms.video.factories.SafeVariable.get","location":"lib/live.hms.video.factories/-safe-variable/get.html","searchKeys":["get","suspend fun get(): T","live.hms.video.factories.SafeVariable.get"]},{"name":"suspend fun getDownloadSpeedInKilobytesPerSecond(networkHealth: NetworkHealth): Double?","description":"live.hms.video.sdk.SpeedTest.getDownloadSpeedInKilobytesPerSecond","location":"lib/live.hms.video.sdk/-speed-test/get-download-speed-in-kilobytes-per-second.html","searchKeys":["getDownloadSpeedInKilobytesPerSecond","suspend fun getDownloadSpeedInKilobytesPerSecond(networkHealth: NetworkHealth): Double?","live.hms.video.sdk.SpeedTest.getDownloadSpeedInKilobytesPerSecond"]},{"name":"suspend fun setSettings(newSettings: HMSAudioTrackSettings)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setSettings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-settings.html","searchKeys":["setSettings","suspend fun setSettings(newSettings: HMSAudioTrackSettings)","live.hms.video.media.tracks.HMSLocalAudioTrack.setSettings"]},{"name":"suspend fun setSettings(newSettings: HMSVideoTrackSettings)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setSettings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-settings.html","searchKeys":["setSettings","suspend fun setSettings(newSettings: HMSVideoTrackSettings)","live.hms.video.media.tracks.HMSLocalVideoTrack.setSettings"]},{"name":"val AOSP_ACOUSTIC_ECHO_CANCELER: UUID","description":"live.hms.video.utils.WertcAudioUtils.Companion.AOSP_ACOUSTIC_ECHO_CANCELER","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/-a-o-s-p_-a-c-o-u-s-t-i-c_-e-c-h-o_-c-a-n-c-e-l-e-r.html","searchKeys":["AOSP_ACOUSTIC_ECHO_CANCELER","val AOSP_ACOUSTIC_ECHO_CANCELER: UUID","live.hms.video.utils.WertcAudioUtils.Companion.AOSP_ACOUSTIC_ECHO_CANCELER"]},{"name":"val BLUETOOTH_CONNECT_PERMISSION: String","description":"live.hms.video.audio.BluetoothPermissionHandler.BLUETOOTH_CONNECT_PERMISSION","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/-b-l-u-e-t-o-o-t-h_-c-o-n-n-e-c-t_-p-e-r-m-i-s-s-i-o-n.html","searchKeys":["BLUETOOTH_CONNECT_PERMISSION","val BLUETOOTH_CONNECT_PERMISSION: String","live.hms.video.audio.BluetoothPermissionHandler.BLUETOOTH_CONNECT_PERMISSION"]},{"name":"val DEFAULT_BLUR_PERCENTAGE: Int = 75","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.DEFAULT_BLUR_PERCENTAGE","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-d-e-f-a-u-l-t_-b-l-u-r_-p-e-r-c-e-n-t-a-g-e.html","searchKeys":["DEFAULT_BLUR_PERCENTAGE","val DEFAULT_BLUR_PERCENTAGE: Int = 75","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.DEFAULT_BLUR_PERCENTAGE"]},{"name":"val DEVICE_INFO: Array","description":"live.hms.video.utils.HMSLogger.DEVICE_INFO","location":"lib/live.hms.video.utils/-h-m-s-logger/-d-e-v-i-c-e_-i-n-f-o.html","searchKeys":["DEVICE_INFO","val DEVICE_INFO: Array","live.hms.video.utils.HMSLogger.DEVICE_INFO"]},{"name":"val DEVICE_INFO: Array","description":"live.hms.video.utils.LogUtils.DEVICE_INFO","location":"lib/live.hms.video.utils/-log-utils/-d-e-v-i-c-e_-i-n-f-o.html","searchKeys":["DEVICE_INFO","val DEVICE_INFO: Array","live.hms.video.utils.LogUtils.DEVICE_INFO"]},{"name":"val LOCAL_PEER: String","description":"live.hms.video.connection.degredation.Peer.Companion.LOCAL_PEER","location":"lib/live.hms.video.connection.degredation/-peer/-companion/-l-o-c-a-l_-p-e-e-r.html","searchKeys":["LOCAL_PEER","val LOCAL_PEER: String","live.hms.video.connection.degredation.Peer.Companion.LOCAL_PEER"]},{"name":"val PROCESSING_CROP_TO_SQUARE: Int = 1","description":"live.hms.video.utils.YuvFrame.PROCESSING_CROP_TO_SQUARE","location":"lib/live.hms.video.utils/-yuv-frame/-p-r-o-c-e-s-s-i-n-g_-c-r-o-p_-t-o_-s-q-u-a-r-e.html","searchKeys":["PROCESSING_CROP_TO_SQUARE","val PROCESSING_CROP_TO_SQUARE: Int = 1","live.hms.video.utils.YuvFrame.PROCESSING_CROP_TO_SQUARE"]},{"name":"val PROCESSING_NONE: Int = 0","description":"live.hms.video.utils.YuvFrame.PROCESSING_NONE","location":"lib/live.hms.video.utils/-yuv-frame/-p-r-o-c-e-s-s-i-n-g_-n-o-n-e.html","searchKeys":["PROCESSING_NONE","val PROCESSING_NONE: Int = 0","live.hms.video.utils.YuvFrame.PROCESSING_NONE"]},{"name":"val PUBLISH_CONNECTION: String","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.PUBLISH_CONNECTION","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/-p-u-b-l-i-s-h_-c-o-n-n-e-c-t-i-o-n.html","searchKeys":["PUBLISH_CONNECTION","val PUBLISH_CONNECTION: String","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.PUBLISH_CONNECTION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SAMPLE_DURATION"]},{"name":"val SOFTWARE_IMPLEMENTATION_PREFIXES: Array","description":"live.hms.video.utils.HmsUtilities.Companion.SOFTWARE_IMPLEMENTATION_PREFIXES","location":"lib/live.hms.video.utils/-hms-utilities/-companion/-s-o-f-t-w-a-r-e_-i-m-p-l-e-m-e-n-t-a-t-i-o-n_-p-r-e-f-i-x-e-s.html","searchKeys":["SOFTWARE_IMPLEMENTATION_PREFIXES","val SOFTWARE_IMPLEMENTATION_PREFIXES: Array","live.hms.video.utils.HmsUtilities.Companion.SOFTWARE_IMPLEMENTATION_PREFIXES"]},{"name":"val SUBSCRIBE_CONNECTION: String","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.SUBSCRIBE_CONNECTION","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/-s-u-b-s-c-r-i-b-e_-c-o-n-n-e-c-t-i-o-n.html","searchKeys":["SUBSCRIBE_CONNECTION","val SUBSCRIBE_CONNECTION: String","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.SUBSCRIBE_CONNECTION"]},{"name":"val TAG: String","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.TAG","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.video.media.tracks.HMSRemoteVideoTrack.TAG"]},{"name":"val action: String","description":"live.hms.video.error.HMSException.action","location":"lib/live.hms.video.error/-h-m-s-exception/action.html","searchKeys":["action","val action: String","live.hms.video.error.HMSException.action"]},{"name":"val addr: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.addr","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/addr.html","searchKeys":["addr","val addr: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.addr"]},{"name":"val admin: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.admin","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/admin.html","searchKeys":["admin","val admin: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.admin"]},{"name":"val alertErrorBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-bright.html","searchKeys":["alertErrorBright","val alertErrorBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBright"]},{"name":"val alertErrorBrighter: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBrighter","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-brighter.html","searchKeys":["alertErrorBrighter","val alertErrorBrighter: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBrighter"]},{"name":"val alertErrorDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-default.html","searchKeys":["alertErrorDefault","val alertErrorDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDefault"]},{"name":"val alertErrorDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-dim.html","searchKeys":["alertErrorDim","val alertErrorDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDim"]},{"name":"val alertSuccess: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-success.html","searchKeys":["alertSuccess","val alertSuccess: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertSuccess"]},{"name":"val alertWarning: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertWarning","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-warning.html","searchKeys":["alertWarning","val alertWarning: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertWarning"]},{"name":"val allStats: Map","description":"live.hms.video.connection.degredation.StatsBundle.allStats","location":"lib/live.hms.video.connection.degredation/-stats-bundle/all-stats.html","searchKeys":["allStats","val allStats: Map","live.hms.video.connection.degredation.StatsBundle.allStats"]},{"name":"val allowPinningMessages: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.allowPinningMessages","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/allow-pinning-messages.html","searchKeys":["allowPinningMessages","val allowPinningMessages: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.allowPinningMessages"]},{"name":"val allowed: ArrayList","description":"live.hms.video.sdk.models.role.PublishParams.allowed","location":"lib/live.hms.video.sdk.models.role/-publish-params/allowed.html","searchKeys":["allowed","val allowed: ArrayList","live.hms.video.sdk.models.role.PublishParams.allowed"]},{"name":"val anonymous: Boolean","description":"live.hms.video.polls.HMSPollBuilder.anonymous","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean","live.hms.video.polls.HMSPollBuilder.anonymous"]},{"name":"val anonymous: Boolean","description":"live.hms.video.polls.models.HmsPoll.anonymous","location":"lib/live.hms.video.polls.models/-hms-poll/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean","live.hms.video.polls.models.HmsPoll.anonymous"]},{"name":"val anonymous: Boolean = false","description":"live.hms.video.polls.models.HmsPollCreationParams.anonymous","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean = false","live.hms.video.polls.models.HmsPollCreationParams.anonymous"]},{"name":"val answerChanged: Boolean","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.answerChanged","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/answer-changed.html","searchKeys":["answerChanged","val answerChanged: Boolean","live.hms.video.polls.models.network.HMSPollQuestionResponse.answerChanged"]},{"name":"val answerLongMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.answerLongMinLength","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/answer-long-min-length.html","searchKeys":["answerLongMinLength","val answerLongMinLength: Long? = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.answerLongMinLength"]},{"name":"val answerLongMinLength: Long? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.answerLongMinLength","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/answer-long-min-length.html","searchKeys":["answerLongMinLength","val answerLongMinLength: Long? = null","live.hms.video.polls.models.question.HMSPollQuestion.answerLongMinLength"]},{"name":"val answerShortMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HMSPollQuestion.answerShortMinLength","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/answer-short-min-length.html","searchKeys":["answerShortMinLength","val answerShortMinLength: Long? = 1","live.hms.video.polls.models.question.HMSPollQuestion.answerShortMinLength"]},{"name":"val answerShortMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.answerShortMinLength","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/answer-short-min-length.html","searchKeys":["answerShortMinLength","val answerShortMinLength: Long? = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.answerShortMinLength"]},{"name":"val answerText: String","description":"live.hms.video.polls.models.answer.HmsPollAnswer.answerText","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/answer-text.html","searchKeys":["answerText","val answerText: String","live.hms.video.polls.models.answer.HmsPollAnswer.answerText"]},{"name":"val appId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.appId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/app-id.html","searchKeys":["appId","val appId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.appId"]},{"name":"val applicationContext: Context","description":"live.hms.video.sdk.HMSSDK.applicationContext","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/application-context.html","searchKeys":["applicationContext","val applicationContext: Context","live.hms.video.sdk.HMSSDK.applicationContext"]},{"name":"val attemptedTimes: Int","description":"live.hms.video.polls.models.PollStatsQuestions.attemptedTimes","location":"lib/live.hms.video.polls.models/-poll-stats-questions/attempted-times.html","searchKeys":["attemptedTimes","val attemptedTimes: Int","live.hms.video.polls.models.PollStatsQuestions.attemptedTimes"]},{"name":"val audio: AudioParams?","description":"live.hms.video.sdk.models.role.PublishParams.audio","location":"lib/live.hms.video.sdk.models.role/-publish-params/audio.html","searchKeys":["audio","val audio: AudioParams?","live.hms.video.sdk.models.role.PublishParams.audio"]},{"name":"val audio: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.audio","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/audio.html","searchKeys":["audio","val audio: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.audio"]},{"name":"val audio: List","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.audio","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/audio.html","searchKeys":["audio","val audio: List","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.audio"]},{"name":"val audioInputReport: AudioInputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.audioInputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/audio-input-report.html","searchKeys":["audioInputReport","val audioInputReport: AudioInputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.audioInputReport"]},{"name":"val audioLevel: Double?","description":"live.hms.video.connection.degredation.Audio.audioLevel","location":"lib/live.hms.video.connection.degredation/-audio/audio-level.html","searchKeys":["audioLevel","val audioLevel: Double?","live.hms.video.connection.degredation.Audio.audioLevel"]},{"name":"val audioLevelList: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioLevelList","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-level-list.html","searchKeys":["audioLevelList","val audioLevelList: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioLevelList"]},{"name":"val audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.audioManagerDeviceChangeListener","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/audio-manager-device-change-listener.html","searchKeys":["audioManagerDeviceChangeListener","val audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener","live.hms.video.audio.manager.HMSAudioManagerApi31.audioManagerDeviceChangeListener"]},{"name":"val audioMode: HMSAudioTrackSettings.HMSAudioMode","description":"live.hms.video.media.settings.HMSAudioTrackSettings.audioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/audio-mode.html","searchKeys":["audioMode","val audioMode: HMSAudioTrackSettings.HMSAudioMode","live.hms.video.media.settings.HMSAudioTrackSettings.audioMode"]},{"name":"val audioOutputReport: AudioOutputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.audioOutputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/audio-output-report.html","searchKeys":["audioOutputReport","val audioOutputReport: AudioOutputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.audioOutputReport"]},{"name":"val audioSample: List","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.audioSample","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/audio-sample.html","searchKeys":["audioSample","val audioSample: List","live.hms.video.connection.stats.clientside.model.AudioAnalytics.audioSample"]},{"name":"val audioSettings: HMSAudioTrackSettings?","description":"live.hms.video.media.settings.HMSTrackSettings.audioSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/audio-settings.html","searchKeys":["audioSettings","val audioSettings: HMSAudioTrackSettings?","live.hms.video.media.settings.HMSTrackSettings.audioSettings"]},{"name":"val authtoken: String","description":"live.hms.video.sdk.models.HMSConfig.authtoken","location":"lib/live.hms.video.sdk.models/-h-m-s-config/authtoken.html","searchKeys":["authtoken","val authtoken: String","live.hms.video.sdk.models.HMSConfig.authtoken"]},{"name":"val availableIncomingBitrate: Double?","description":"live.hms.video.connection.degredation.Peer.availableIncomingBitrate","location":"lib/live.hms.video.connection.degredation/-peer/available-incoming-bitrate.html","searchKeys":["availableIncomingBitrate","val availableIncomingBitrate: Double?","live.hms.video.connection.degredation.Peer.availableIncomingBitrate"]},{"name":"val availableOutgoingBitrate: Double?","description":"live.hms.video.connection.degredation.Peer.availableOutgoingBitrate","location":"lib/live.hms.video.connection.degredation/-peer/available-outgoing-bitrate.html","searchKeys":["availableOutgoingBitrate","val availableOutgoingBitrate: Double?","live.hms.video.connection.degredation.Peer.availableOutgoingBitrate"]},{"name":"val averageScore: Float?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.averageScore","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/average-score.html","searchKeys":["averageScore","val averageScore: Float?","live.hms.video.polls.network.HMSPollLeaderboardSummary.averageScore"]},{"name":"val averageTime: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.averageTime","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/average-time.html","searchKeys":["averageTime","val averageTime: Long?","live.hms.video.polls.network.HMSPollLeaderboardSummary.averageTime"]},{"name":"val avgAvailableOutgoingBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","val avgAvailableOutgoingBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgAvailableOutgoingBitrateBps"]},{"name":"val avgAvailableOutgoingBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","val avgAvailableOutgoingBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgAvailableOutgoingBitrateBps"]},{"name":"val avgBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","val avgBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgBitrateBps"]},{"name":"val avgBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","val avgBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgBitrateBps"]},{"name":"val avgScore: Float?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.avgScore","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/avg-score.html","searchKeys":["avgScore","val avgScore: Float?","live.hms.video.polls.network.HMSPollLeaderboardResponse.avgScore"]},{"name":"val avgTime: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.avgTime","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/avg-time.html","searchKeys":["avgTime","val avgTime: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.avgTime"]},{"name":"val avg_fps: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avg_fps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg_fps.html","searchKeys":["avg_fps","val avg_fps: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avg_fps"]},{"name":"val backgroundDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/background-default.html","searchKeys":["backgroundDefault","val backgroundDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDefault"]},{"name":"val backgroundDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/background-dim.html","searchKeys":["backgroundDim","val backgroundDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDim"]},{"name":"val backgroundMedia: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.backgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/background-media.html","searchKeys":["backgroundMedia","val backgroundMedia: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.backgroundMedia"]},{"name":"val backgroundMedia: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.backgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/background-media.html","searchKeys":["backgroundMedia","val backgroundMedia: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.backgroundMedia"]},{"name":"val bandWidth: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.bandWidth","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/band-width.html","searchKeys":["bandWidth","val bandWidth: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.bandWidth"]},{"name":"val bandwidthMs: Float","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.bandwidthMs","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/bandwidth-ms.html","searchKeys":["bandwidthMs","val bandwidthMs: Float","live.hms.video.connection.stats.clientside.model.QualityLimitation.bandwidthMs"]},{"name":"val batteryPercentage: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.batteryPercentage","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/battery-percentage.html","searchKeys":["batteryPercentage","val batteryPercentage: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.batteryPercentage"]},{"name":"val bitRate: Int","description":"live.hms.video.sdk.models.role.AudioParams.bitRate","location":"lib/live.hms.video.sdk.models.role/-audio-params/bit-rate.html","searchKeys":["bitRate","val bitRate: Int","live.hms.video.sdk.models.role.AudioParams.bitRate"]},{"name":"val bitRate: Int","description":"live.hms.video.sdk.models.role.VideoParams.bitRate","location":"lib/live.hms.video.sdk.models.role/-video-params/bit-rate.html","searchKeys":["bitRate","val bitRate: Int","live.hms.video.sdk.models.role.VideoParams.bitRate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSLocalAudioStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSRemoteAudioStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.bitrate"]},{"name":"val bitrate: Int","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.bitrate","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/bitrate.html","searchKeys":["bitrate","val bitrate: Int","live.hms.video.media.settings.HMSSimulcastSettings.Item.bitrate"]},{"name":"val bitrateReceived: Double","description":"live.hms.video.connection.stats.HMSRTCStats.bitrateReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bitrate-received.html","searchKeys":["bitrateReceived","val bitrateReceived: Double","live.hms.video.connection.stats.HMSRTCStats.bitrateReceived"]},{"name":"val bitrateSent: Double","description":"live.hms.video.connection.stats.HMSRTCStats.bitrateSent","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bitrate-sent.html","searchKeys":["bitrateSent","val bitrateSent: Double","live.hms.video.connection.stats.HMSRTCStats.bitrateSent"]},{"name":"val borderBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-bright.html","searchKeys":["borderBright","val borderBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderBright"]},{"name":"val borderDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-default.html","searchKeys":["borderDefault","val borderDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderDefault"]},{"name":"val borderLight: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderLight","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-light.html","searchKeys":["borderLight","val borderLight: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderLight"]},{"name":"val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/brb.html","searchKeys":["brb","val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.brb"]},{"name":"val bringToStageLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.bringToStageLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/bring-to-stage-label.html","searchKeys":["bringToStageLabel","val bringToStageLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.bringToStageLabel"]},{"name":"val browser: Browser?","description":"live.hms.video.sdk.peerlist.models.Recording.browser","location":"lib/live.hms.video.sdk.peerlist.models/-recording/browser.html","searchKeys":["browser","val browser: Browser?","live.hms.video.sdk.peerlist.models.Recording.browser"]},{"name":"val browserRecording: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.browserRecording","location":"lib/live.hms.video.sdk.models.role/-permissions-params/browser-recording.html","searchKeys":["browserRecording","val browserRecording: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.browserRecording"]},{"name":"val buffer: ByteBuffer","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.buffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/buffer.html","searchKeys":["buffer","val buffer: ByteBuffer","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.buffer"]},{"name":"val byGroupName: String? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byGroupName","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-group-name.html","searchKeys":["byGroupName","val byGroupName: String? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byGroupName"]},{"name":"val byPeerIds: ArrayList? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byPeerIds","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-peer-ids.html","searchKeys":["byPeerIds","val byPeerIds: ArrayList? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byPeerIds"]},{"name":"val byRoleName: String? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byRoleName","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-role-name.html","searchKeys":["byRoleName","val byRoleName: String? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byRoleName"]},{"name":"val bytesReceived: BigInteger?","description":"live.hms.video.connection.degredation.Peer.bytesReceived","location":"lib/live.hms.video.connection.degredation/-peer/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: BigInteger?","live.hms.video.connection.degredation.Peer.bytesReceived"]},{"name":"val bytesReceived: Long","description":"live.hms.video.connection.stats.HMSRTCStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long","live.hms.video.connection.stats.HMSRTCStats.bytesReceived"]},{"name":"val bytesReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long?","live.hms.video.connection.stats.HMSRemoteAudioStats.bytesReceived"]},{"name":"val bytesReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long?","live.hms.video.connection.stats.HMSRemoteVideoStats.bytesReceived"]},{"name":"val bytesSent: BigInteger?","description":"live.hms.video.connection.degredation.Peer.bytesSent","location":"lib/live.hms.video.connection.degredation/-peer/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: BigInteger?","live.hms.video.connection.degredation.Peer.bytesSent"]},{"name":"val bytesSent: Long","description":"live.hms.video.connection.stats.HMSRTCStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long","live.hms.video.connection.stats.HMSRTCStats.bytesSent"]},{"name":"val bytesSent: Long?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long?","live.hms.video.connection.stats.HMSLocalAudioStats.bytesSent"]},{"name":"val bytesSent: Long?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long?","live.hms.video.connection.stats.HMSLocalVideoStats.bytesSent"]},{"name":"val cInconsistencyDetectTimerDelayTimeUnit: TimeUnit","description":"live.hms.video.utils.cInconsistencyDetectTimerDelayTimeUnit","location":"lib/live.hms.video.utils/c-inconsistency-detect-timer-delay-time-unit.html","searchKeys":["cInconsistencyDetectTimerDelayTimeUnit","val cInconsistencyDetectTimerDelayTimeUnit: TimeUnit","live.hms.video.utils.cInconsistencyDetectTimerDelayTimeUnit"]},{"name":"val cMaxTransportRetryDelayUnit: TimeUnit","description":"live.hms.video.utils.cMaxTransportRetryDelayUnit","location":"lib/live.hms.video.utils/c-max-transport-retry-delay-unit.html","searchKeys":["cMaxTransportRetryDelayUnit","val cMaxTransportRetryDelayUnit: TimeUnit","live.hms.video.utils.cMaxTransportRetryDelayUnit"]},{"name":"val cSubscribeIceRestartWaitTimeoutUnit: TimeUnit","description":"live.hms.video.utils.cSubscribeIceRestartWaitTimeoutUnit","location":"lib/live.hms.video.utils/c-subscribe-ice-restart-wait-timeout-unit.html","searchKeys":["cSubscribeIceRestartWaitTimeoutUnit","val cSubscribeIceRestartWaitTimeoutUnit: TimeUnit","live.hms.video.utils.cSubscribeIceRestartWaitTimeoutUnit"]},{"name":"val cameraHandler: Handler?","description":"live.hms.video.media.capturers.camera.CameraControl.cameraHandler","location":"lib/live.hms.video.media.capturers.camera/-camera-control/camera-handler.html","searchKeys":["cameraHandler","val cameraHandler: Handler?","live.hms.video.media.capturers.camera.CameraControl.cameraHandler"]},{"name":"val canBlockUser: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canBlockUser","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-block-user.html","searchKeys":["canBlockUser","val canBlockUser: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canBlockUser"]},{"name":"val canChangeResponse: Boolean = true","description":"live.hms.video.polls.models.question.HMSPollQuestion.canChangeResponse","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/can-change-response.html","searchKeys":["canChangeResponse","val canChangeResponse: Boolean = true","live.hms.video.polls.models.question.HMSPollQuestion.canChangeResponse"]},{"name":"val canChangeResponse: Boolean = true","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.canChangeResponse","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/can-change-response.html","searchKeys":["canChangeResponse","val canChangeResponse: Boolean = true","live.hms.video.polls.models.question.HmsPollQuestionCreation.canChangeResponse"]},{"name":"val canDisableChat: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canDisableChat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-disable-chat.html","searchKeys":["canDisableChat","val canDisableChat: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canDisableChat"]},{"name":"val canHideMessage: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canHideMessage","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-hide-message.html","searchKeys":["canHideMessage","val canHideMessage: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canHideMessage"]},{"name":"val canSkip: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestion.canSkip","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/can-skip.html","searchKeys":["canSkip","val canSkip: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestion.canSkip"]},{"name":"val canSkip: Boolean = false","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.canSkip","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/can-skip.html","searchKeys":["canSkip","val canSkip: Boolean = false","live.hms.video.polls.models.question.HmsPollQuestionCreation.canSkip"]},{"name":"val case: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.case","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/case.html","searchKeys":["case","val case: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestionOption.case"]},{"name":"val caseSensitive: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.caseSensitive","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/case-sensitive.html","searchKeys":["caseSensitive","val caseSensitive: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.caseSensitive"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.HMSPollBuilder.category","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.HMSPollBuilder.category"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.models.HmsPoll.category","location":"lib/live.hms.video.polls.models/-hms-poll/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.models.HmsPoll.category"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.models.HmsPollCreationParams.category","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.models.HmsPollCreationParams.category"]},{"name":"val changeRole: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.changeRole","location":"lib/live.hms.video.sdk.models.role/-permissions-params/change-role.html","searchKeys":["changeRole","val changeRole: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.changeRole"]},{"name":"val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/chat.html","searchKeys":["chat","val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.chat"]},{"name":"val chatTitle: String","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.chatTitle","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/chat-title.html","searchKeys":["chatTitle","val chatTitle: String","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.chatTitle"]},{"name":"val code: Int","description":"live.hms.video.error.HMSException.code","location":"lib/live.hms.video.error/-h-m-s-exception/code.html","searchKeys":["code","val code: Int","live.hms.video.error.HMSException.code"]},{"name":"val code: Int?","description":"live.hms.video.media.streams.models.PreferStateResponseError.code","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/code.html","searchKeys":["code","val code: Int?","live.hms.video.media.streams.models.PreferStateResponseError.code"]},{"name":"val code: Int?","description":"live.hms.video.sdk.models.OnTranscriptionError.code","location":"lib/live.hms.video.sdk.models/-on-transcription-error/code.html","searchKeys":["code","val code: Int?","live.hms.video.sdk.models.OnTranscriptionError.code"]},{"name":"val codec: HMSAudioCodec","description":"live.hms.video.sdk.models.role.AudioParams.codec","location":"lib/live.hms.video.sdk.models.role/-audio-params/codec.html","searchKeys":["codec","val codec: HMSAudioCodec","live.hms.video.sdk.models.role.AudioParams.codec"]},{"name":"val codec: HMSVideoCodec","description":"live.hms.video.sdk.models.role.VideoParams.codec","location":"lib/live.hms.video.sdk.models.role/-video-params/codec.html","searchKeys":["codec","val codec: HMSVideoCodec","live.hms.video.sdk.models.role.VideoParams.codec"]},{"name":"val combined: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.combined","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/combined.html","searchKeys":["combined","val combined: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.combined"]},{"name":"val concealedSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.concealedSamples","location":"lib/live.hms.video.connection.degredation/-audio/concealed-samples.html","searchKeys":["concealedSamples","val concealedSamples: BigInteger?","live.hms.video.connection.degredation.Audio.concealedSamples"]},{"name":"val concealmentEvents: BigInteger?","description":"live.hms.video.connection.degredation.Audio.concealmentEvents","location":"lib/live.hms.video.connection.degredation/-audio/concealment-events.html","searchKeys":["concealmentEvents","val concealmentEvents: BigInteger?","live.hms.video.connection.degredation.Audio.concealmentEvents"]},{"name":"val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/conferencing.html","searchKeys":["conferencing","val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.conferencing"]},{"name":"val context: Context","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.context","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/context.html","searchKeys":["context","val context: Context","live.hms.video.audio.manager.HMSAudioManagerApi31.context"]},{"name":"val context: Context","description":"live.hms.video.media.capturers.camera.CameraControl.context","location":"lib/live.hms.video.media.capturers.camera/-camera-control/context.html","searchKeys":["context","val context: Context","live.hms.video.media.capturers.camera.CameraControl.context"]},{"name":"val context: EglBase.Context","description":"live.hms.video.utils.SharedEglContext.context","location":"lib/live.hms.video.utils/-shared-egl-context/context.html","searchKeys":["context","val context: EglBase.Context","live.hms.video.utils.SharedEglContext.context"]},{"name":"val correct: Boolean","description":"live.hms.video.polls.models.answer.PollAnswerItem.correct","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/correct.html","searchKeys":["correct","val correct: Boolean","live.hms.video.polls.models.answer.PollAnswerItem.correct"]},{"name":"val correct: Long","description":"live.hms.video.polls.network.PollResultsItems.correct","location":"lib/live.hms.video.polls.network/-poll-results-items/correct.html","searchKeys":["correct","val correct: Long","live.hms.video.polls.network.PollResultsItems.correct"]},{"name":"val correct: Long?","description":"live.hms.video.polls.models.PollStatsQuestions.correct","location":"lib/live.hms.video.polls.models/-poll-stats-questions/correct.html","searchKeys":["correct","val correct: Long?","live.hms.video.polls.models.PollStatsQuestions.correct"]},{"name":"val correctAnswer: HMSPollQuestionAnswer?","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.correctAnswer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer?","live.hms.video.polls.models.question.HmsPollQuestionContainer.correctAnswer"]},{"name":"val correctAnswer: HMSPollQuestionAnswer?","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.correctAnswer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer?","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.correctAnswer"]},{"name":"val correctAnswer: HMSPollQuestionAnswer? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.correctAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer? = null","live.hms.video.polls.models.question.HMSPollQuestion.correctAnswer"]},{"name":"val correctResponses: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.correctResponses","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/correct-responses.html","searchKeys":["correctResponses","val correctResponses: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.correctResponses"]},{"name":"val correctResponses: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.correctResponses","location":"lib/live.hms.video.polls.network/-leaderboard-question/correct-responses.html","searchKeys":["correctResponses","val correctResponses: Long?","live.hms.video.polls.network.LeaderboardQuestion.correctResponses"]},{"name":"val correctUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.correctUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/correct-users.html","searchKeys":["correctUsers","val correctUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.correctUsers"]},{"name":"val count: Long","description":"live.hms.video.sdk.models.PeerSearchResponse.count","location":"lib/live.hms.video.sdk.models/-peer-search-response/count.html","searchKeys":["count","val count: Long","live.hms.video.sdk.models.PeerSearchResponse.count"]},{"name":"val cpu: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.cpu","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/cpu.html","searchKeys":["cpu","val cpu: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.cpu"]},{"name":"val cpuMs: Float","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.cpuMs","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/cpu-ms.html","searchKeys":["cpuMs","val cpuMs: Float","live.hms.video.connection.stats.clientside.model.QualityLimitation.cpuMs"]},{"name":"val createdBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.createdBy","location":"lib/live.hms.video.polls.models/-hms-poll/created-by.html","searchKeys":["createdBy","val createdBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.createdBy"]},{"name":"val currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.Peer.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-peer/current-round-trip-time.html","searchKeys":["currentRoundTripTime","val currentRoundTripTime: Double?","live.hms.video.connection.degredation.Peer.currentRoundTripTime"]},{"name":"val currentState: String","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.currentState","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/current-state.html","searchKeys":["currentState","val currentState: String","live.hms.video.sdk.models.enums.RetrySchedulerState.currentState"]},{"name":"val customerUserID: String?","description":"live.hms.video.sdk.models.HMSPeer.customerUserID","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/customer-user-i-d.html","searchKeys":["customerUserID","val customerUserID: String?","live.hms.video.sdk.models.HMSPeer.customerUserID"]},{"name":"val data: List?","description":"live.hms.video.signal.init.HMSRoomLayout.data","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/data.html","searchKeys":["data","val data: List?","live.hms.video.signal.init.HMSRoomLayout.data"]},{"name":"val data: String?","description":"live.hms.video.media.streams.models.PreferStateResponseError.data","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/data.html","searchKeys":["data","val data: String?","live.hms.video.media.streams.models.PreferStateResponseError.data"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.default"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.default"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.default"]},{"name":"val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/default.html","searchKeys":["default","val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.default"]},{"name":"val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/default.html","searchKeys":["default","val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.default"]},{"name":"val degradationPreference: DegradationPreference","description":"live.hms.video.media.settings.HMSVideoTrackSettings.degradationPreference","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/degradation-preference.html","searchKeys":["degradationPreference","val degradationPreference: DegradationPreference","live.hms.video.media.settings.HMSVideoTrackSettings.degradationPreference"]},{"name":"val degradeGracePeriodSeconds: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.degradeGracePeriodSeconds","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/degrade-grace-period-seconds.html","searchKeys":["degradeGracePeriodSeconds","val degradeGracePeriodSeconds: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.degradeGracePeriodSeconds"]},{"name":"val delayedPacketOutageSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.delayedPacketOutageSamples","location":"lib/live.hms.video.connection.degredation/-audio/delayed-packet-outage-samples.html","searchKeys":["delayedPacketOutageSamples","val delayedPacketOutageSamples: BigInteger?","live.hms.video.connection.degredation.Audio.delayedPacketOutageSamples"]},{"name":"val description: String","description":"live.hms.video.audio.BluetoothErrorType.description","location":"lib/live.hms.video.audio/-bluetooth-error-type/description.html","searchKeys":["description","val description: String","live.hms.video.audio.BluetoothErrorType.description"]},{"name":"val description: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.description","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/description.html","searchKeys":["description","val description: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.description"]},{"name":"val detached: Boolean?","description":"live.hms.video.connection.degredation.Audio.detached","location":"lib/live.hms.video.connection.degredation/-audio/detached.html","searchKeys":["detached","val detached: Boolean?","live.hms.video.connection.degredation.Audio.detached"]},{"name":"val deviceTestReport: DeviceTestReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.deviceTestReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/device-test-report.html","searchKeys":["deviceTestReport","val deviceTestReport: DeviceTestReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.deviceTestReport"]},{"name":"val disableAutoResize: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.disableAutoResize","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/disable-auto-resize.html","searchKeys":["disableAutoResize","val disableAutoResize: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.disableAutoResize"]},{"name":"val disableInternalAudioManager: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.disableInternalAudioManager","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/disable-internal-audio-manager.html","searchKeys":["disableInternalAudioManager","val disableInternalAudioManager: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.disableInternalAudioManager"]},{"name":"val downlinkQuality: Int","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality.downlinkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/downlink-quality.html","searchKeys":["downlinkQuality","val downlinkQuality: Int","live.hms.video.connection.stats.quality.HMSNetworkQuality.downlinkQuality"]},{"name":"val duration: Long","description":"live.hms.video.polls.HMSPollBuilder.duration","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/duration.html","searchKeys":["duration","val duration: Long","live.hms.video.polls.HMSPollBuilder.duration"]},{"name":"val duration: Long","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.duration","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/duration.html","searchKeys":["duration","val duration: Long","live.hms.video.sdk.models.HMSHLSTimedMetadata.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.HmsPollCreationParams.duration","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.HmsPollCreationParams.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.duration","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.question.HMSPollQuestion.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.duration","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.question.HmsPollQuestionCreation.duration"]},{"name":"val duration: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.duration","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/duration.html","searchKeys":["duration","val duration: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.duration"]},{"name":"val duration: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.duration","location":"lib/live.hms.video.polls.network/-leaderboard-question/duration.html","searchKeys":["duration","val duration: Long?","live.hms.video.polls.network.LeaderboardQuestion.duration"]},{"name":"val durationMillis: Long? = null","description":"live.hms.video.polls.models.answer.HmsPollAnswer.durationMillis","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/duration-millis.html","searchKeys":["durationMillis","val durationMillis: Long? = null","live.hms.video.polls.models.answer.HmsPollAnswer.durationMillis"]},{"name":"val effectsKey: String?","description":"live.hms.video.signal.init.VB.effectsKey","location":"lib/live.hms.video.signal.init/-v-b/effects-key.html","searchKeys":["effectsKey","val effectsKey: String?","live.hms.video.signal.init.VB.effectsKey"]},{"name":"val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/elements.html","searchKeys":["elements","val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.elements"]},{"name":"val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/elements.html","searchKeys":["elements","val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.elements"]},{"name":"val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.emojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/emoji-reactions.html","searchKeys":["emojiReactions","val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.emojiReactions"]},{"name":"val emptySpaceTrimmed: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.emptySpaceTrimmed","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/empty-space-trimmed.html","searchKeys":["emptySpaceTrimmed","val emptySpaceTrimmed: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.emptySpaceTrimmed"]},{"name":"val enableAutomaticGainControl: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableAutomaticGainControl","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-automatic-gain-control.html","searchKeys":["enableAutomaticGainControl","val enableAutomaticGainControl: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableAutomaticGainControl"]},{"name":"val enableEchoCancellation: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableEchoCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-echo-cancellation.html","searchKeys":["enableEchoCancellation","val enableEchoCancellation: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableEchoCancellation"]},{"name":"val enableLocalTileInset: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableLocalTileInset","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/enable-local-tile-inset.html","searchKeys":["enableLocalTileInset","val enableLocalTileInset: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableLocalTileInset"]},{"name":"val enableNoiseCancellation: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","val enableNoiseCancellation: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseCancellation"]},{"name":"val enableNoiseSupression: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseSupression","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-noise-supression.html","searchKeys":["enableNoiseSupression","val enableNoiseSupression: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseSupression"]},{"name":"val enableSpotlightingPeer: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableSpotlightingPeer","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/enable-spotlighting-peer.html","searchKeys":["enableSpotlightingPeer","val enableSpotlightingPeer: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableSpotlightingPeer"]},{"name":"val enabled: Boolean","description":"live.hms.video.sdk.peerlist.models.Hls.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-hls/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.sdk.peerlist.models.Hls.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.sdk.peerlist.models.Sfu.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.sdk.peerlist.models.Sfu.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.enabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.enabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.enabled"]},{"name":"val enabled: Boolean?","description":"live.hms.video.sdk.peerlist.models.Browser.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-browser/enabled.html","searchKeys":["enabled","val enabled: Boolean?","live.hms.video.sdk.peerlist.models.Browser.enabled"]},{"name":"val enabledFlags: List?","description":"live.hms.video.signal.init.ServerConfiguration.enabledFlags","location":"lib/live.hms.video.signal.init/-server-configuration/enabled-flags.html","searchKeys":["enabledFlags","val enabledFlags: List?","live.hms.video.signal.init.ServerConfiguration.enabledFlags"]},{"name":"val enabledFromDashboard: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.enabledFromDashboard","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/enabled-from-dashboard.html","searchKeys":["enabledFromDashboard","val enabledFromDashboard: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.enabledFromDashboard"]},{"name":"val end: Int","description":"live.hms.video.sdk.transcripts.HmsTranscript.end","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/end.html","searchKeys":["end","val end: Int","live.hms.video.sdk.transcripts.HmsTranscript.end"]},{"name":"val endFlow: MutableSharedFlow","description":"live.hms.video.services.HMSScreenCaptureService.endFlow","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/end-flow.html","searchKeys":["endFlow","val endFlow: MutableSharedFlow","live.hms.video.services.HMSScreenCaptureService.endFlow"]},{"name":"val endRoom: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.endRoom","location":"lib/live.hms.video.sdk.models.role/-permissions-params/end-room.html","searchKeys":["endRoom","val endRoom: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.endRoom"]},{"name":"val ended: Boolean?","description":"live.hms.video.connection.degredation.Audio.ended","location":"lib/live.hms.video.connection.degredation/-audio/ended.html","searchKeys":["ended","val ended: Boolean?","live.hms.video.connection.degredation.Audio.ended"]},{"name":"val endpoint: String?","description":"live.hms.video.signal.init.LayoutRequestOptions.endpoint","location":"lib/live.hms.video.signal.init/-layout-request-options/endpoint.html","searchKeys":["endpoint","val endpoint: String?","live.hms.video.signal.init.LayoutRequestOptions.endpoint"]},{"name":"val endpoint: String?","description":"live.hms.video.signal.init.TokenRequestOptions.endpoint","location":"lib/live.hms.video.signal.init/-token-request-options/endpoint.html","searchKeys":["endpoint","val endpoint: String?","live.hms.video.signal.init.TokenRequestOptions.endpoint"]},{"name":"val entries: List?","description":"live.hms.video.polls.network.PollLeaderboardResponse.entries","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/entries.html","searchKeys":["entries","val entries: List?","live.hms.video.polls.network.PollLeaderboardResponse.entries"]},{"name":"val eof: Boolean","description":"live.hms.video.sdk.models.PeerSearchResponse.eof","location":"lib/live.hms.video.sdk.models/-peer-search-response/--eof--.html","searchKeys":["eof","val eof: Boolean","live.hms.video.sdk.models.PeerSearchResponse.eof"]},{"name":"val error: HMSException?","description":"live.hms.video.polls.models.answer.PollAnswerItem.error","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.polls.models.answer.PollAnswerItem.error"]},{"name":"val error: HMSException?","description":"live.hms.video.polls.network.PollResultsItems.error","location":"lib/live.hms.video.polls.network/-poll-results-items/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.polls.network.PollResultsItems.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSBrowserRecordingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSHLSStreamingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSHLSStreamingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSRtmpStreamingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSServerRecordingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSServerRecordingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.error","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HmsHlsRecordingState.error"]},{"name":"val error: Throwable? = null","description":"live.hms.video.polls.network.QuestionContainer.error","location":"lib/live.hms.video.polls.network/-question-container/error.html","searchKeys":["error","val error: Throwable? = null","live.hms.video.polls.network.QuestionContainer.error"]},{"name":"val errorListener: IErrorListener?","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.errorListener","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/error-listener.html","searchKeys":["errorListener","val errorListener: IErrorListener?","live.hms.video.audio.manager.HMSAudioManagerApi31.errorListener"]},{"name":"val errorMessage: String?","description":"live.hms.video.signal.init.ErrorTokenResult.errorMessage","location":"lib/live.hms.video.signal.init/-error-token-result/error-message.html","searchKeys":["errorMessage","val errorMessage: String?","live.hms.video.signal.init.ErrorTokenResult.errorMessage"]},{"name":"val errors: List","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.errors","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/errors.html","searchKeys":["errors","val errors: List","live.hms.video.diagnostics.models.ConnectivityCheckResult.errors"]},{"name":"val expiresAt: String?","description":"live.hms.video.signal.init.TokenResult.expiresAt","location":"lib/live.hms.video.signal.init/-token-result/expires-at.html","searchKeys":["expiresAt","val expiresAt: String?","live.hms.video.signal.init.TokenResult.expiresAt"]},{"name":"val finalAnswer: Boolean","description":"live.hms.video.polls.models.network.SingleResponse.finalAnswer","location":"lib/live.hms.video.polls.models.network/-single-response/final-answer.html","searchKeys":["finalAnswer","val finalAnswer: Boolean","live.hms.video.polls.models.network.SingleResponse.finalAnswer"]},{"name":"val firCount: Long?","description":"live.hms.video.connection.degredation.Video.firCount","location":"lib/live.hms.video.connection.degredation/-video/fir-count.html","searchKeys":["firCount","val firCount: Long?","live.hms.video.connection.degredation.Video.firCount"]},{"name":"val fontFamily: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.fontFamily","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/font-family.html","searchKeys":["fontFamily","val fontFamily: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.fontFamily"]},{"name":"val forceSoftwareDecoder: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareDecoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","val forceSoftwareDecoder: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareDecoder"]},{"name":"val forceSoftwareDecoder: Boolean = false","description":"live.hms.video.factories.HMSVideoDecoderFactory.forceSoftwareDecoder","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","val forceSoftwareDecoder: Boolean = false","live.hms.video.factories.HMSVideoDecoderFactory.forceSoftwareDecoder"]},{"name":"val forceSoftwareEncoder: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareEncoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/force-software-encoder.html","searchKeys":["forceSoftwareEncoder","val forceSoftwareEncoder: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareEncoder"]},{"name":"val format: Int","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.format","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/format.html","searchKeys":["format","val format: Int","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.format"]},{"name":"val fps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.fps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/fps.html","searchKeys":["fps","val fps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.fps"]},{"name":"val frameHeight: Long?","description":"live.hms.video.connection.degredation.Video.frameHeight","location":"lib/live.hms.video.connection.degredation/-video/frame-height.html","searchKeys":["frameHeight","val frameHeight: Long?","live.hms.video.connection.degredation.Video.frameHeight"]},{"name":"val frameRate: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.frameRate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/frame-rate.html","searchKeys":["frameRate","val frameRate: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.frameRate"]},{"name":"val frameRate: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.frameRate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/frame-rate.html","searchKeys":["frameRate","val frameRate: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.frameRate"]},{"name":"val frameRate: Int","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.frameRate","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/frame-rate.html","searchKeys":["frameRate","val frameRate: Int","live.hms.video.media.settings.HMSSimulcastSettings.Item.frameRate"]},{"name":"val frameRate: Int","description":"live.hms.video.sdk.models.role.VideoParams.frameRate","location":"lib/live.hms.video.sdk.models.role/-video-params/frame-rate.html","searchKeys":["frameRate","val frameRate: Int","live.hms.video.sdk.models.role.VideoParams.frameRate"]},{"name":"val frameRate: Number?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.frameRate","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/frame-rate.html","searchKeys":["frameRate","val frameRate: Number?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.frameRate"]},{"name":"val frameWidth: Long?","description":"live.hms.video.connection.degredation.Video.frameWidth","location":"lib/live.hms.video.connection.degredation/-video/frame-width.html","searchKeys":["frameWidth","val frameWidth: Long?","live.hms.video.connection.degredation.Video.frameWidth"]},{"name":"val framesDecoded: Long?","description":"live.hms.video.connection.degredation.Video.framesDecoded","location":"lib/live.hms.video.connection.degredation/-video/frames-decoded.html","searchKeys":["framesDecoded","val framesDecoded: Long?","live.hms.video.connection.degredation.Video.framesDecoded"]},{"name":"val framesDropped: Long?","description":"live.hms.video.connection.degredation.Video.framesDropped","location":"lib/live.hms.video.connection.degredation/-video/frames-dropped.html","searchKeys":["framesDropped","val framesDropped: Long?","live.hms.video.connection.degredation.Video.framesDropped"]},{"name":"val framesPerSecond: Double?","description":"live.hms.video.connection.degredation.Video.framesPerSecond","location":"lib/live.hms.video.connection.degredation/-video/frames-per-second.html","searchKeys":["framesPerSecond","val framesPerSecond: Double?","live.hms.video.connection.degredation.Video.framesPerSecond"]},{"name":"val framesReceived: Int?","description":"live.hms.video.connection.degredation.Video.framesReceived","location":"lib/live.hms.video.connection.degredation/-video/frames-received.html","searchKeys":["framesReceived","val framesReceived: Int?","live.hms.video.connection.degredation.Video.framesReceived"]},{"name":"val framework: AgentType","description":"live.hms.video.sdk.models.FrameworkInfo.framework","location":"lib/live.hms.video.sdk.models/-framework-info/framework.html","searchKeys":["framework","val framework: AgentType","live.hms.video.sdk.models.FrameworkInfo.framework"]},{"name":"val frameworkInfo: FrameworkInfo","description":"live.hms.video.sdk.HMSSDK.frameworkInfo","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/framework-info.html","searchKeys":["frameworkInfo","val frameworkInfo: FrameworkInfo","live.hms.video.sdk.HMSSDK.frameworkInfo"]},{"name":"val frameworkSdkVersion: String? = null","description":"live.hms.video.sdk.models.FrameworkInfo.frameworkSdkVersion","location":"lib/live.hms.video.sdk.models/-framework-info/framework-sdk-version.html","searchKeys":["frameworkSdkVersion","val frameworkSdkVersion: String? = null","live.hms.video.sdk.models.FrameworkInfo.frameworkSdkVersion"]},{"name":"val frameworkVersion: String? = null","description":"live.hms.video.sdk.models.FrameworkInfo.frameworkVersion","location":"lib/live.hms.video.sdk.models/-framework-info/framework-version.html","searchKeys":["frameworkVersion","val frameworkVersion: String? = null","live.hms.video.sdk.models.FrameworkInfo.frameworkVersion"]},{"name":"val freezeCount: Long?","description":"live.hms.video.connection.degredation.Video.freezeCount","location":"lib/live.hms.video.connection.degredation/-video/freeze-count.html","searchKeys":["freezeCount","val freezeCount: Long?","live.hms.video.connection.degredation.Video.freezeCount"]},{"name":"val goLiveBtnLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.goLiveBtnLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/go-live-btn-label.html","searchKeys":["goLiveBtnLabel","val goLiveBtnLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.goLiveBtnLabel"]},{"name":"val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/grid.html","searchKeys":["grid","val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.grid"]},{"name":"val groups: ArrayList?","description":"live.hms.video.groups.GroupJoinLeaveResponse.groups","location":"lib/live.hms.video.groups/-group-join-leave-response/groups.html","searchKeys":["groups","val groups: ArrayList?","live.hms.video.groups.GroupJoinLeaveResponse.groups"]},{"name":"val gson: Gson","description":"live.hms.video.utils.GsonUtils.gson","location":"lib/live.hms.video.utils/-gson-utils/gson.html","searchKeys":["gson","val gson: Gson","live.hms.video.utils.GsonUtils.gson"]},{"name":"val haltPreviewJoinForPermissions: Boolean","description":"live.hms.video.sdk.HMSSDK.haltPreviewJoinForPermissions","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/halt-preview-join-for-permissions.html","searchKeys":["haltPreviewJoinForPermissions","val haltPreviewJoinForPermissions: Boolean","live.hms.video.sdk.HMSSDK.haltPreviewJoinForPermissions"]},{"name":"val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.handRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/hand-raise.html","searchKeys":["handRaise","val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.handRaise"]},{"name":"val handler: Handler","description":"live.hms.video.diagnostics.HMSDiagnostics.handler","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/handler.html","searchKeys":["handler","val handler: Handler","live.hms.video.diagnostics.HMSDiagnostics.handler"]},{"name":"val hasNext: Boolean?","description":"live.hms.video.polls.network.PollLeaderboardResponse.hasNext","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/has-next.html","searchKeys":["hasNext","val hasNext: Boolean?","live.hms.video.polls.network.PollLeaderboardResponse.hasNext"]},{"name":"val hash: String","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.hash","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/hash.html","searchKeys":["hash","val hash: String","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.hash"]},{"name":"val height: Int","description":"live.hms.video.connection.stats.clientside.model.Size.height","location":"lib/live.hms.video.connection.stats.clientside.model/-size/height.html","searchKeys":["height","val height: Int","live.hms.video.connection.stats.clientside.model.Size.height"]},{"name":"val height: Int","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.height","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/height.html","searchKeys":["height","val height: Int","live.hms.video.media.settings.HMSRtmpVideoResolution.height"]},{"name":"val height: Int","description":"live.hms.video.sdk.models.role.VideoParams.height","location":"lib/live.hms.video.sdk.models.role/-video-params/height.html","searchKeys":["height","val height: Int","live.hms.video.sdk.models.role.VideoParams.height"]},{"name":"val hidden: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.hidden","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/hidden.html","searchKeys":["hidden","val hidden: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.hidden"]},{"name":"val high: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.high","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/high.html","searchKeys":["high","val high: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.high"]},{"name":"val high: Long","description":"live.hms.video.signal.init.RangeLimits.high","location":"lib/live.hms.video.signal.init/-range-limits/high.html","searchKeys":["high","val high: Long","live.hms.video.signal.init.RangeLimits.high"]},{"name":"val hls: Hls?","description":"live.hms.video.sdk.peerlist.models.Recording.hls","location":"lib/live.hms.video.sdk.peerlist.models/-recording/hls.html","searchKeys":["hls","val hls: Hls?","live.hms.video.sdk.peerlist.models.Recording.hls"]},{"name":"val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.hlsLiveStreaming","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/hls-live-streaming.html","searchKeys":["hlsLiveStreaming","val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.hlsLiveStreaming"]},{"name":"val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.hlsLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/hls-live-streaming-header.html","searchKeys":["hlsLiveStreamingHeader","val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.hlsLiveStreamingHeader"]},{"name":"val hlsRecordingConfig: HMSHlsRecordingConfig?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.hlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/hls-recording-config.html","searchKeys":["hlsRecordingConfig","val hlsRecordingConfig: HMSHlsRecordingConfig?","live.hms.video.sdk.models.HmsHlsRecordingState.hlsRecordingConfig"]},{"name":"val hlsRecordingConfig: HMSHlsRecordingConfig?","description":"live.hms.video.sdk.peerlist.models.Hls.hlsRecordingConfig","location":"lib/live.hms.video.sdk.peerlist.models/-hls/hls-recording-config.html","searchKeys":["hlsRecordingConfig","val hlsRecordingConfig: HMSHlsRecordingConfig?","live.hms.video.sdk.peerlist.models.Hls.hlsRecordingConfig"]},{"name":"val hlsStreamUrl: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.hlsStreamUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/hls-stream-url.html","searchKeys":["hlsStreamUrl","val hlsStreamUrl: String?","live.hms.video.sdk.models.HMSHLSVariant.hlsStreamUrl"]},{"name":"val hlsStreaming: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.hlsStreaming","location":"lib/live.hms.video.sdk.models.role/-permissions-params/hls-streaming.html","searchKeys":["hlsStreaming","val hlsStreaming: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.hlsStreaming"]},{"name":"val hmsAudioTrackSettings: HMSAudioTrackSettings?","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.hmsAudioTrackSettings","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/hms-audio-track-settings.html","searchKeys":["hmsAudioTrackSettings","val hmsAudioTrackSettings: HMSAudioTrackSettings?","live.hms.video.audio.manager.HMSAudioManagerApi31.hmsAudioTrackSettings"]},{"name":"val hmsBitmapUpdateListener: HMSBitmapUpdateListener","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsBitmapUpdateListener","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/hms-bitmap-update-listener.html","searchKeys":["hmsBitmapUpdateListener","val hmsBitmapUpdateListener: HMSBitmapUpdateListener","live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsBitmapUpdateListener"]},{"name":"val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null","description":"live.hms.video.sdk.models.HMSHLSConfig.hmsHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/hms-hls-recording-config.html","searchKeys":["hmsHlsRecordingConfig","val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null","live.hms.video.sdk.models.HMSHLSConfig.hmsHlsRecordingConfig"]},{"name":"val hmsLayer: HMSLayer?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.hmsLayer","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/hms-layer.html","searchKeys":["hmsLayer","val hmsLayer: HMSLayer?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.hmsLayer"]},{"name":"val hmsLayer: HMSLayer?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.hmsLayer","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/hms-layer.html","searchKeys":["hmsLayer","val hmsLayer: HMSLayer?","live.hms.video.connection.stats.HMSLocalVideoStats.hmsLayer"]},{"name":"val hmsLogSettings: HMSLogSettings","description":"live.hms.video.sdk.HMSSDK.hmsLogSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-log-settings.html","searchKeys":["hmsLogSettings","val hmsLogSettings: HMSLogSettings","live.hms.video.sdk.HMSSDK.hmsLogSettings"]},{"name":"val hmsPoll: HmsPoll","description":"live.hms.video.polls.HMSPollResponseBuilder.hmsPoll","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/hms-poll.html","searchKeys":["hmsPoll","val hmsPoll: HmsPoll","live.hms.video.polls.HMSPollResponseBuilder.hmsPoll"]},{"name":"val hmsSDK: HMSSDK","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsSDK","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/hms-s-d-k.html","searchKeys":["hmsSDK","val hmsSDK: HMSSDK","live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsSDK"]},{"name":"val hmsSettings: HMSTrackSettings","description":"live.hms.video.sdk.HMSSDK.hmsSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-settings.html","searchKeys":["hmsSettings","val hmsSettings: HMSTrackSettings","live.hms.video.sdk.HMSSDK.hmsSettings"]},{"name":"val hmsTrack: HMSTrack?","description":"live.hms.video.sdk.models.HMSSpeaker.hmsTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/hms-track.html","searchKeys":["hmsTrack","val hmsTrack: HMSTrack?","live.hms.video.sdk.models.HMSSpeaker.hmsTrack"]},{"name":"val hmsTrackSettings: HMSTrackSettings","description":"live.hms.video.audio.BluetoothPermissionHandler.hmsTrackSettings","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/hms-track-settings.html","searchKeys":["hmsTrackSettings","val hmsTrackSettings: HMSTrackSettings","live.hms.video.audio.BluetoothPermissionHandler.hmsTrackSettings"]},{"name":"val hmsWebRtcLogLevel: HMSLogger.LogLevel","description":"live.hms.video.sdk.HMSSDK.hmsWebRtcLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-web-rtc-log-level.html","searchKeys":["hmsWebRtcLogLevel","val hmsWebRtcLogLevel: HMSLogger.LogLevel","live.hms.video.sdk.HMSSDK.hmsWebRtcLogLevel"]},{"name":"val hmsWhiteboard: HMSWhiteboard","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.hmsWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/hms-whiteboard.html","searchKeys":["hmsWhiteboard","val hmsWhiteboard: HMSWhiteboard","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.hmsWhiteboard"]},{"name":"val hmsWhiteboard: HMSWhiteboard","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.hmsWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/hms-whiteboard.html","searchKeys":["hmsWhiteboard","val hmsWhiteboard: HMSWhiteboard","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.hmsWhiteboard"]},{"name":"val iceGatheringOnAnyAddressPorts: Boolean","description":"live.hms.video.sdk.HMSSDK.iceGatheringOnAnyAddressPorts","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/ice-gathering-on-any-address-ports.html","searchKeys":["iceGatheringOnAnyAddressPorts","val iceGatheringOnAnyAddressPorts: Boolean","live.hms.video.sdk.HMSSDK.iceGatheringOnAnyAddressPorts"]},{"name":"val id: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.id","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/id.html","searchKeys":["id","val id: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.id"]},{"name":"val id: String","description":"live.hms.video.media.streams.HMSMediaStream.id","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/id.html","searchKeys":["id","val id: String","live.hms.video.media.streams.HMSMediaStream.id"]},{"name":"val id: String","description":"live.hms.video.whiteboard.HMSWhiteboard.id","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/id.html","searchKeys":["id","val id: String","live.hms.video.whiteboard.HMSWhiteboard.id"]},{"name":"val id: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.id","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/id.html","searchKeys":["id","val id: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.id"]},{"name":"val id: String?","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.id","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/id.html","searchKeys":["id","val id: String?","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.id"]},{"name":"val id: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.id","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/id.html","searchKeys":["id","val id: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.id"]},{"name":"val image: Image","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.image","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/image.html","searchKeys":["image","val image: Image","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.image"]},{"name":"val index: Int","description":"live.hms.video.polls.models.PollStatsQuestions.index","location":"lib/live.hms.video.polls.models/-poll-stats-questions/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.PollStatsQuestions.index"]},{"name":"val index: Int","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.index","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.network.HMSPollQuestionResponse.index"]},{"name":"val index: Int","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.index","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.question.HMSPollQuestionOption.index"]},{"name":"val info: PreferLayerResponseInfo","description":"live.hms.video.media.streams.models.PreferStateResponse.info","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/info.html","searchKeys":["info","val info: PreferLayerResponseInfo","live.hms.video.media.streams.models.PreferStateResponse.info"]},{"name":"val initEndpoint: String","description":"live.hms.video.sdk.models.HMSConfig.initEndpoint","location":"lib/live.hms.video.sdk.models/-h-m-s-config/init-endpoint.html","searchKeys":["initEndpoint","val initEndpoint: String","live.hms.video.sdk.models.HMSConfig.initEndpoint"]},{"name":"val initialState: HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSAudioTrackSettings.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/initial-state.html","searchKeys":["initialState","val initialState: HMSTrackSettings.InitState","live.hms.video.media.settings.HMSAudioTrackSettings.initialState"]},{"name":"val initialState: HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSVideoTrackSettings.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/initial-state.html","searchKeys":["initialState","val initialState: HMSTrackSettings.InitState","live.hms.video.media.settings.HMSVideoTrackSettings.initialState"]},{"name":"val initialState: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.initialState","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/initial-state.html","searchKeys":["initialState","val initialState: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.initialState"]},{"name":"val initialisedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.initialisedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/initialised-at.html","searchKeys":["initialisedAt","val initialisedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.initialisedAt"]},{"name":"val initialisedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.initialisedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/initialised-at.html","searchKeys":["initialisedAt","val initialisedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.initialisedAt"]},{"name":"val initialising: Boolean = false","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.initialising","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/initialising.html","searchKeys":["initialising","val initialising: Boolean = false","live.hms.video.sdk.models.HMSBrowserRecordingState.initialising"]},{"name":"val insertedSamplesForDeceleration: BigInteger?","description":"live.hms.video.connection.degredation.Audio.insertedSamplesForDeceleration","location":"lib/live.hms.video.connection.degredation/-audio/inserted-samples-for-deceleration.html","searchKeys":["insertedSamplesForDeceleration","val insertedSamplesForDeceleration: BigInteger?","live.hms.video.connection.degredation.Audio.insertedSamplesForDeceleration"]},{"name":"val interruptionCount: Long?","description":"live.hms.video.connection.degredation.Audio.interruptionCount","location":"lib/live.hms.video.connection.degredation/-audio/interruption-count.html","searchKeys":["interruptionCount","val interruptionCount: Long?","live.hms.video.connection.degredation.Audio.interruptionCount"]},{"name":"val isFinal: Boolean","description":"live.hms.video.sdk.transcripts.HmsTranscript.isFinal","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/is-final.html","searchKeys":["isFinal","val isFinal: Boolean","live.hms.video.sdk.transcripts.HmsTranscript.isFinal"]},{"name":"val isLast: Boolean","description":"live.hms.video.polls.network.PollGetResponsesReply.isLast","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/is-last.html","searchKeys":["isLast","val isLast: Boolean","live.hms.video.polls.network.PollGetResponsesReply.isLast"]},{"name":"val isLocal: Boolean","description":"live.hms.video.sdk.models.HMSPeer.isLocal","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/is-local.html","searchKeys":["isLocal","val isLocal: Boolean","live.hms.video.sdk.models.HMSPeer.isLocal"]},{"name":"val isLogStorageEnabled: Boolean = false","description":"live.hms.video.media.settings.HMSLogSettings.isLogStorageEnabled","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/is-log-storage-enabled.html","searchKeys":["isLogStorageEnabled","val isLogStorageEnabled: Boolean = false","live.hms.video.media.settings.HMSLogSettings.isLogStorageEnabled"]},{"name":"val isOwner: Boolean","description":"live.hms.video.whiteboard.HMSWhiteboard.isOwner","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/is-owner.html","searchKeys":["isOwner","val isOwner: Boolean","live.hms.video.whiteboard.HMSWhiteboard.isOwner"]},{"name":"val isPrebuilt: Boolean","description":"live.hms.video.sdk.models.FrameworkInfo.isPrebuilt","location":"lib/live.hms.video.sdk.models/-framework-info/is-prebuilt.html","searchKeys":["isPrebuilt","val isPrebuilt: Boolean","live.hms.video.sdk.models.FrameworkInfo.isPrebuilt"]},{"name":"val isReleaseSigned: Boolean","description":"live.hms.video.sdk.SignatureChecker.isReleaseSigned","location":"lib/live.hms.video.sdk/-signature-checker/is-release-signed.html","searchKeys":["isReleaseSigned","val isReleaseSigned: Boolean","live.hms.video.sdk.SignatureChecker.isReleaseSigned"]},{"name":"val isSubscribed: Boolean","description":"live.hms.video.media.streams.models.PreferLayerAudio.isSubscribed","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/is-subscribed.html","searchKeys":["isSubscribed","val isSubscribed: Boolean","live.hms.video.media.streams.models.PreferLayerAudio.isSubscribed"]},{"name":"val isSuccess: Boolean","description":"live.hms.video.polls.network.QuestionContainer.isSuccess","location":"lib/live.hms.video.polls.network/-question-container/is-success.html","searchKeys":["isSuccess","val isSuccess: Boolean","live.hms.video.polls.network.QuestionContainer.isSuccess"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSRemoteAudioStats.jitter"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.jitter"]},{"name":"val jitterBufferDelayAverage: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.jitterBufferDelayAverage","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/jitter-buffer-delay-average.html","searchKeys":["jitterBufferDelayAverage","val jitterBufferDelayAverage: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.jitterBufferDelayAverage"]},{"name":"val jitterBufferEmittedCount: BigInteger?","description":"live.hms.video.connection.degredation.Audio.jitterBufferEmittedCount","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-emitted-count.html","searchKeys":["jitterBufferEmittedCount","val jitterBufferEmittedCount: BigInteger?","live.hms.video.connection.degredation.Audio.jitterBufferEmittedCount"]},{"name":"val jitterBufferFlushes: BigInteger?","description":"live.hms.video.connection.degredation.Audio.jitterBufferFlushes","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-flushes.html","searchKeys":["jitterBufferFlushes","val jitterBufferFlushes: BigInteger?","live.hms.video.connection.degredation.Audio.jitterBufferFlushes"]},{"name":"val jitterBufferTargetDelay: Double?","description":"live.hms.video.connection.degredation.Audio.jitterBufferTargetDelay","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-target-delay.html","searchKeys":["jitterBufferTargetDelay","val jitterBufferTargetDelay: Double?","live.hms.video.connection.degredation.Audio.jitterBufferTargetDelay"]},{"name":"val jitterMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.jitterMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/jitter-ms.html","searchKeys":["jitterMs","val jitterMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.jitterMs"]},{"name":"val jitterMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.jitterMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/jitter-ms.html","searchKeys":["jitterMs","val jitterMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.jitterMs"]},{"name":"val joinBtnLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/join-btn-label.html","searchKeys":["joinBtnLabel","val joinBtnLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnLabel"]},{"name":"val joinBtnType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/join-btn-type.html","searchKeys":["joinBtnType","val joinBtnType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnType"]},{"name":"val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.joinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/join-form.html","searchKeys":["joinForm","val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.joinForm"]},{"name":"val joined_at: Long","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.joined_at","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/joined_at.html","searchKeys":["joined_at","val joined_at: Long","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.joined_at"]},{"name":"val jsonRpc: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.jsonRpc","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/json-rpc.html","searchKeys":["jsonRpc","val jsonRpc: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.jsonRpc"]},{"name":"val key1: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key1","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/key1.html","searchKeys":["key1","val key1: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key1"]},{"name":"val key2: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key2","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/key2.html","searchKeys":["key2","val key2: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key2"]},{"name":"val last: Boolean","description":"live.hms.video.polls.network.PollQuestionGetResponse.last","location":"lib/live.hms.video.polls.network/-poll-question-get-response/last.html","searchKeys":["last","val last: Boolean","live.hms.video.polls.network.PollQuestionGetResponse.last"]},{"name":"val last: Boolean?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.last","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/last.html","searchKeys":["last","val last: Boolean?","live.hms.video.polls.network.HMSPollLeaderboardResponse.last"]},{"name":"val last: String?","description":"live.hms.video.signal.init.HMSRoomLayout.last","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/last.html","searchKeys":["last","val last: String?","live.hms.video.signal.init.HMSRoomLayout.last"]},{"name":"val layer: HMSLayer","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.layer","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/layer.html","searchKeys":["layer","val layer: HMSLayer","live.hms.video.media.settings.HMSSimulcastLayerDefinition.layer"]},{"name":"val layer: String","description":"live.hms.video.media.streams.models.PreferLayer.layer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/layer.html","searchKeys":["layer","val layer: String","live.hms.video.media.streams.models.PreferLayer.layer"]},{"name":"val layers: ArrayList?","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams.layers","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/layers.html","searchKeys":["layers","val layers: ArrayList?","live.hms.video.sdk.models.role.VideoSimulcastLayersParams.layers"]},{"name":"val leaderboard: List?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.leaderboard","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/leaderboard.html","searchKeys":["leaderboard","val leaderboard: List?","live.hms.video.polls.network.HMSPollLeaderboardResponse.leaderboard"]},{"name":"val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/leave.html","searchKeys":["leave","val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.leave"]},{"name":"val level: HMSLogger.LogLevel","description":"live.hms.video.media.settings.HMSLogSettings.level","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/level.html","searchKeys":["level","val level: HMSLogger.LogLevel","live.hms.video.media.settings.HMSLogSettings.level"]},{"name":"val level: Int","description":"live.hms.video.sdk.models.HMSSpeaker.level","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/level.html","searchKeys":["level","val level: Int","live.hms.video.sdk.models.HMSSpeaker.level"]},{"name":"val libraryPresent: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.libraryPresent","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/library-present.html","searchKeys":["libraryPresent","val libraryPresent: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.libraryPresent"]},{"name":"val libraryPresent: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.libraryPresent","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/library-present.html","searchKeys":["libraryPresent","val libraryPresent: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.libraryPresent"]},{"name":"val limit: Int","description":"live.hms.video.sdk.models.PeerSearchResponse.limit","location":"lib/live.hms.video.sdk.models/-peer-search-response/limit.html","searchKeys":["limit","val limit: Int","live.hms.video.sdk.models.PeerSearchResponse.limit"]},{"name":"val limit: Int = 10","description":"live.hms.video.sdk.models.PeerListIteratorOptions.limit","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/limit.html","searchKeys":["limit","val limit: Int = 10","live.hms.video.sdk.models.PeerListIteratorOptions.limit"]},{"name":"val localPeer: HMSLocalPeer?","description":"live.hms.video.sdk.models.HMSRoom.localPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-room/local-peer.html","searchKeys":["localPeer","val localPeer: HMSLocalPeer?","live.hms.video.sdk.models.HMSRoom.localPeer"]},{"name":"val locked: Boolean = false","description":"live.hms.video.polls.models.HmsPollCreationParams.locked","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/locked.html","searchKeys":["locked","val locked: Boolean = false","live.hms.video.polls.models.HmsPollCreationParams.locked"]},{"name":"val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/logo.html","searchKeys":["logo","val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.logo"]},{"name":"val low: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.low","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/low.html","searchKeys":["low","val low: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.low"]},{"name":"val low: Long","description":"live.hms.video.signal.init.RangeLimits.low","location":"lib/live.hms.video.signal.init/-range-limits/low.html","searchKeys":["low","val low: Long","live.hms.video.signal.init.RangeLimits.low"]},{"name":"val maxBitrate: Int?","description":"live.hms.video.sdk.models.role.LayerParams.maxBitrate","location":"lib/live.hms.video.sdk.models.role/-layer-params/max-bitrate.html","searchKeys":["maxBitrate","val maxBitrate: Int?","live.hms.video.sdk.models.role.LayerParams.maxBitrate"]},{"name":"val maxDirSizeInBytes: Long","description":"live.hms.video.media.settings.HMSLogSettings.maxDirSizeInBytes","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/max-dir-size-in-bytes.html","searchKeys":["maxDirSizeInBytes","val maxDirSizeInBytes: Long","live.hms.video.media.settings.HMSLogSettings.maxDirSizeInBytes"]},{"name":"val maxFramerate: Int?","description":"live.hms.video.sdk.models.role.LayerParams.maxFramerate","location":"lib/live.hms.video.sdk.models.role/-layer-params/max-framerate.html","searchKeys":["maxFramerate","val maxFramerate: Int?","live.hms.video.sdk.models.role.LayerParams.maxFramerate"]},{"name":"val maxPeerCount: Long","description":"live.hms.video.sdk.models.role.HMSRole.maxPeerCount","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/max-peer-count.html","searchKeys":["maxPeerCount","val maxPeerCount: Long","live.hms.video.sdk.models.role.HMSRole.maxPeerCount"]},{"name":"val maxSamplePushInterval: Float?","description":"live.hms.video.signal.init.Stats.maxSamplePushInterval","location":"lib/live.hms.video.signal.init/-stats/max-sample-push-interval.html","searchKeys":["maxSamplePushInterval","val maxSamplePushInterval: Float?","live.hms.video.signal.init.Stats.maxSamplePushInterval"]},{"name":"val maxSampleWindowSize: Float?","description":"live.hms.video.signal.init.Stats.maxSampleWindowSize","location":"lib/live.hms.video.signal.init/-stats/max-sample-window-size.html","searchKeys":["maxSampleWindowSize","val maxSampleWindowSize: Float?","live.hms.video.signal.init.Stats.maxSampleWindowSize"]},{"name":"val maxSubsBitRate: Int","description":"live.hms.video.sdk.models.role.SubscribeParams.maxSubsBitRate","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/max-subs-bit-rate.html","searchKeys":["maxSubsBitRate","val maxSubsBitRate: Int","live.hms.video.sdk.models.role.SubscribeParams.maxSubsBitRate"]},{"name":"val maxWindowSecond: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.maxWindowSecond","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/max-window-second.html","searchKeys":["maxWindowSecond","val maxWindowSecond: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.maxWindowSecond"]},{"name":"val mediaServerReport: MediaServerReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.mediaServerReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/media-server-report.html","searchKeys":["mediaServerReport","val mediaServerReport: MediaServerReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.mediaServerReport"]},{"name":"val mediaType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.mediaType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/media-type.html","searchKeys":["mediaType","val mediaType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.mediaType"]},{"name":"val mediaType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.mediaType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/media-type.html","searchKeys":["mediaType","val mediaType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.mediaType"]},{"name":"val medium: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.medium","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/medium.html","searchKeys":["medium","val medium: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.medium"]},{"name":"val meetingURLVariants: List? = null","description":"live.hms.video.sdk.models.HMSHLSConfig.meetingURLVariants","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/meeting-u-r-l-variants.html","searchKeys":["meetingURLVariants","val meetingURLVariants: List? = null","live.hms.video.sdk.models.HMSHLSConfig.meetingURLVariants"]},{"name":"val meetingUrl: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String?","live.hms.video.sdk.models.HMSHLSVariant.meetingUrl"]},{"name":"val meetingUrl: String? = null","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String? = null","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.meetingUrl"]},{"name":"val meetingUrl: String? = null","description":"live.hms.video.sdk.models.HMSRecordingConfig.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String? = null","live.hms.video.sdk.models.HMSRecordingConfig.meetingUrl"]},{"name":"val message: String","description":"live.hms.video.sdk.Unstable.message","location":"lib/live.hms.video.sdk/-unstable/message.html","searchKeys":["message","val message: String","live.hms.video.sdk.Unstable.message"]},{"name":"val message: String","description":"live.hms.video.sdk.models.HMSMessage.message","location":"lib/live.hms.video.sdk.models/-h-m-s-message/message.html","searchKeys":["message","val message: String","live.hms.video.sdk.models.HMSMessage.message"]},{"name":"val message: String?","description":"live.hms.video.media.streams.models.PreferStateResponseError.message","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/message.html","searchKeys":["message","val message: String?","live.hms.video.media.streams.models.PreferStateResponseError.message"]},{"name":"val message: String?","description":"live.hms.video.sdk.models.OnTranscriptionError.message","location":"lib/live.hms.video.sdk.models/-on-transcription-error/message.html","searchKeys":["message","val message: String?","live.hms.video.sdk.models.OnTranscriptionError.message"]},{"name":"val messageId: String","description":"live.hms.video.sdk.models.HMSMessage.messageId","location":"lib/live.hms.video.sdk.models/-h-m-s-message/message-id.html","searchKeys":["messageId","val messageId: String","live.hms.video.sdk.models.HMSMessage.messageId"]},{"name":"val messageId: String?","description":"live.hms.video.sdk.models.HMSMessageSendResponse.messageId","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/message-id.html","searchKeys":["messageId","val messageId: String?","live.hms.video.sdk.models.HMSMessageSendResponse.messageId"]},{"name":"val messagePlaceholder: String","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.messagePlaceholder","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/message-placeholder.html","searchKeys":["messagePlaceholder","val messagePlaceholder: String","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.messagePlaceholder"]},{"name":"val metadata: CaptureResult","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.metadata","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/metadata.html","searchKeys":["metadata","val metadata: CaptureResult","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.metadata"]},{"name":"val metadata: String","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/metadata.html","searchKeys":["metadata","val metadata: String","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.metadata"]},{"name":"val metadata: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/metadata.html","searchKeys":["metadata","val metadata: String?","live.hms.video.sdk.models.HMSHLSVariant.metadata"]},{"name":"val method: String","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.method","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/method.html","searchKeys":["method","val method: String","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.method"]},{"name":"val method: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.method","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/method.html","searchKeys":["method","val method: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.method"]},{"name":"val mode: HmsPollUserTrackingMode","description":"live.hms.video.polls.HMSPollBuilder.mode","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode","live.hms.video.polls.HMSPollBuilder.mode"]},{"name":"val mode: HmsPollUserTrackingMode","description":"live.hms.video.polls.models.HmsPollCreationParams.mode","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode","live.hms.video.polls.models.HmsPollCreationParams.mode"]},{"name":"val mode: HmsPollUserTrackingMode?","description":"live.hms.video.polls.models.HmsPoll.mode","location":"lib/live.hms.video.polls.models/-hms-poll/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode?","live.hms.video.polls.models.HmsPoll.mode"]},{"name":"val mode: TranscriptionsMode?","description":"live.hms.video.sdk.models.Result.mode","location":"lib/live.hms.video.sdk.models/-result/mode.html","searchKeys":["mode","val mode: TranscriptionsMode?","live.hms.video.sdk.models.Result.mode"]},{"name":"val mute: Boolean","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.mute","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/mute.html","searchKeys":["mute","val mute: Boolean","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.mute"]},{"name":"val mute: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.mute","location":"lib/live.hms.video.sdk.models.role/-permissions-params/mute.html","searchKeys":["mute","val mute: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.mute"]},{"name":"val myResponses: MutableList","description":"live.hms.video.polls.models.question.HMSPollQuestion.myResponses","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/my-responses.html","searchKeys":["myResponses","val myResponses: MutableList","live.hms.video.polls.models.question.HMSPollQuestion.myResponses"]},{"name":"val nackCount: Long?","description":"live.hms.video.connection.degredation.Video.nackCount","location":"lib/live.hms.video.connection.degredation/-video/nack-count.html","searchKeys":["nackCount","val nackCount: Long?","live.hms.video.connection.degredation.Video.nackCount"]},{"name":"val name: String","description":"live.hms.video.audio.HMSAudioDeviceInfo.name","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/name.html","searchKeys":["name","val name: String","live.hms.video.audio.HMSAudioDeviceInfo.name"]},{"name":"val name: String","description":"live.hms.video.error.HMSException.name","location":"lib/live.hms.video.error/-h-m-s-exception/name.html","searchKeys":["name","val name: String","live.hms.video.error.HMSException.name"]},{"name":"val name: String","description":"live.hms.video.sdk.models.role.HMSRole.name","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/name.html","searchKeys":["name","val name: String","live.hms.video.sdk.models.role.HMSRole.name"]},{"name":"val name: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.name","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/name.html","searchKeys":["name","val name: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.name"]},{"name":"val negative: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestion.negative","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/negative.html","searchKeys":["negative","val negative: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestion.negative"]},{"name":"val negative: Boolean = false","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.negative","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/negative.html","searchKeys":["negative","val negative: Boolean = false","live.hms.video.polls.models.question.HmsPollQuestionCreation.negative"]},{"name":"val networkHealth: NetworkHealth?","description":"live.hms.video.signal.init.ServerConfiguration.networkHealth","location":"lib/live.hms.video.signal.init/-server-configuration/network-health.html","searchKeys":["networkHealth","val networkHealth: NetworkHealth?","live.hms.video.signal.init.ServerConfiguration.networkHealth"]},{"name":"val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.noiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/noise-cancellation-element.html","searchKeys":["noiseCancellationElement","val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.noiseCancellationElement"]},{"name":"val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.noiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/noise-cancellation-element.html","searchKeys":["noiseCancellationElement","val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.noiseCancellationElement"]},{"name":"val none: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.none","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/none.html","searchKeys":["none","val none: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.none"]},{"name":"val offStageRoles: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.offStageRoles","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/off-stage-roles.html","searchKeys":["offStageRoles","val offStageRoles: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.offStageRoles"]},{"name":"val offset: Long","description":"live.hms.video.sdk.models.PeerSearchResponse.offset","location":"lib/live.hms.video.sdk.models/-peer-search-response/offset.html","searchKeys":["offset","val offset: Long","live.hms.video.sdk.models.PeerSearchResponse.offset"]},{"name":"val onPrimaryHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-high.html","searchKeys":["onPrimaryHigh","val onPrimaryHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryHigh"]},{"name":"val onPrimaryLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-low.html","searchKeys":["onPrimaryLow","val onPrimaryLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryLow"]},{"name":"val onPrimaryMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-medium.html","searchKeys":["onPrimaryMedium","val onPrimaryMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryMedium"]},{"name":"val onSecondaryHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-high.html","searchKeys":["onSecondaryHigh","val onSecondaryHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryHigh"]},{"name":"val onSecondaryLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-low.html","searchKeys":["onSecondaryLow","val onSecondaryLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryLow"]},{"name":"val onSecondaryMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-medium.html","searchKeys":["onSecondaryMedium","val onSecondaryMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryMedium"]},{"name":"val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.onStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/on-stage-exp.html","searchKeys":["onStageExp","val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.onStageExp"]},{"name":"val onStageRole: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.onStageRole","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/on-stage-role.html","searchKeys":["onStageRole","val onStageRole: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.onStageRole"]},{"name":"val onSurfaceHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-high.html","searchKeys":["onSurfaceHigh","val onSurfaceHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceHigh"]},{"name":"val onSurfaceLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-low.html","searchKeys":["onSurfaceLow","val onSurfaceLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceLow"]},{"name":"val onSurfaceMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-medium.html","searchKeys":["onSurfaceMedium","val onSurfaceMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceMedium"]},{"name":"val option: Int? = null","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.option","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/option.html","searchKeys":["option","val option: Int? = null","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.option"]},{"name":"val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.options","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/options.html","searchKeys":["options","val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.options","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.question.HmsPollQuestionContainer.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.options","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.options"]},{"name":"val options: List? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.options","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/options.html","searchKeys":["options","val options: List? = null","live.hms.video.polls.models.question.HMSPollQuestion.options"]},{"name":"val options: List? = null","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.options","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/options.html","searchKeys":["options","val options: List? = null","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.PollStatsQuestions.options","location":"lib/live.hms.video.polls.models/-poll-stats-questions/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.PollStatsQuestions.options"]},{"name":"val orientation: Int?","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.orientation","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/orientation.html","searchKeys":["orientation","val orientation: Int?","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.orientation"]},{"name":"val other: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.other","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/other.html","searchKeys":["other","val other: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.other"]},{"name":"val overlayView: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.overlayView","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/overlay-view.html","searchKeys":["overlayView","val overlayView: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.overlayView"]},{"name":"val owner: HMSPeer? = null","description":"live.hms.video.whiteboard.HMSWhiteboard.owner","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/owner.html","searchKeys":["owner","val owner: HMSPeer? = null","live.hms.video.whiteboard.HMSWhiteboard.owner"]},{"name":"val owner: String?","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.owner","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/owner.html","searchKeys":["owner","val owner: String?","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.owner"]},{"name":"val owner: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.owner","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/owner.html","searchKeys":["owner","val owner: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.owner"]},{"name":"val packetLoss: Int?","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.packetLoss","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Int?","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.packetLoss"]},{"name":"val packetLoss: Long","description":"live.hms.video.connection.degredation.StatsBundle.packetLoss","location":"lib/live.hms.video.connection.degredation/-stats-bundle/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long","live.hms.video.connection.degredation.StatsBundle.packetLoss"]},{"name":"val packetLoss: Long?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.packetLoss","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long?","live.hms.video.connection.stats.HMSLocalAudioStats.packetLoss"]},{"name":"val packetLoss: Long?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.packetLoss","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long?","live.hms.video.connection.stats.HMSLocalVideoStats.packetLoss"]},{"name":"val packetLossThreshold: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.packetLossThreshold","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/packet-loss-threshold.html","searchKeys":["packetLossThreshold","val packetLossThreshold: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.packetLossThreshold"]},{"name":"val packetLossTracks: MutableMap","description":"live.hms.video.connection.degredation.StatsBundle.packetLossTracks","location":"lib/live.hms.video.connection.degredation/-stats-bundle/packet-loss-tracks.html","searchKeys":["packetLossTracks","val packetLossTracks: MutableMap","live.hms.video.connection.degredation.StatsBundle.packetLossTracks"]},{"name":"val packetsLost: Int?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Int?","live.hms.video.connection.stats.HMSRemoteAudioStats.packetsLost"]},{"name":"val packetsLost: Int?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Int?","live.hms.video.connection.stats.HMSRemoteVideoStats.packetsLost"]},{"name":"val packetsLost: Long","description":"live.hms.video.connection.stats.HMSRTCStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Long","live.hms.video.connection.stats.HMSRTCStats.packetsLost"]},{"name":"val packetsReceived: BigInteger?","description":"live.hms.video.connection.degredation.Peer.packetsReceived","location":"lib/live.hms.video.connection.degredation/-peer/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: BigInteger?","live.hms.video.connection.degredation.Peer.packetsReceived"]},{"name":"val packetsReceived: Long","description":"live.hms.video.connection.stats.HMSRTCStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long","live.hms.video.connection.stats.HMSRTCStats.packetsReceived"]},{"name":"val packetsReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long?","live.hms.video.connection.stats.HMSRemoteAudioStats.packetsReceived"]},{"name":"val packetsReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long?","live.hms.video.connection.stats.HMSRemoteVideoStats.packetsReceived"]},{"name":"val packetsSent: BigInteger?","description":"live.hms.video.connection.degredation.Peer.packetsSent","location":"lib/live.hms.video.connection.degredation/-peer/packets-sent.html","searchKeys":["packetsSent","val packetsSent: BigInteger?","live.hms.video.connection.degredation.Peer.packetsSent"]},{"name":"val packetsSent: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.packetsSent","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.packetsSent","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.packetsSent","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.packetsSent"]},{"name":"val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.palette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/palette.html","searchKeys":["palette","val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.palette"]},{"name":"val params: HMSDataChannelRequestParams","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.params","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/params.html","searchKeys":["params","val params: HMSDataChannelRequestParams","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.params"]},{"name":"val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.participantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/participant-list.html","searchKeys":["participantList","val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.participantList"]},{"name":"val payload: String","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.payload","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/payload.html","searchKeys":["payload","val payload: String","live.hms.video.sdk.models.HMSHLSTimedMetadata.payload"]},{"name":"val peer: HMSPeer?","description":"live.hms.video.sdk.models.HMSSpeaker.peer","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/peer.html","searchKeys":["peer","val peer: HMSPeer?","live.hms.video.sdk.models.HMSSpeaker.peer"]},{"name":"val peer: HMSPeer?","description":"live.hms.video.sdk.transcripts.HmsTranscript.peer","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/peer.html","searchKeys":["peer","val peer: HMSPeer?","live.hms.video.sdk.transcripts.HmsTranscript.peer"]},{"name":"val peer: HMSPollResponsePeerInfo","description":"live.hms.video.polls.models.network.SingleResponse.peer","location":"lib/live.hms.video.polls.models.network/-single-response/peer.html","searchKeys":["peer","val peer: HMSPollResponsePeerInfo","live.hms.video.polls.models.network.SingleResponse.peer"]},{"name":"val peer: HMSPollResponsePeerInfo?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.peer","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/peer.html","searchKeys":["peer","val peer: HMSPollResponsePeerInfo?","live.hms.video.polls.network.HMSPollLeaderboardEntry.peer"]},{"name":"val peerID: String","description":"live.hms.video.sdk.models.HMSPeer.peerID","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/peer-i-d.html","searchKeys":["peerID","val peerID: String","live.hms.video.sdk.models.HMSPeer.peerID"]},{"name":"val peerId: String","description":"live.hms.video.sdk.models.HMSSpeaker.peerId","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/peer-id.html","searchKeys":["peerId","val peerId: String","live.hms.video.sdk.models.HMSSpeaker.peerId"]},{"name":"val peerId: String","description":"live.hms.video.sdk.transcripts.HmsTranscript.peerId","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/peer-id.html","searchKeys":["peerId","val peerId: String","live.hms.video.sdk.transcripts.HmsTranscript.peerId"]},{"name":"val peerList: List","description":"live.hms.video.sdk.models.HMSRoom.peerList","location":"lib/live.hms.video.sdk.models/-h-m-s-room/peer-list.html","searchKeys":["peerList","val peerList: List","live.hms.video.sdk.models.HMSRoom.peerList"]},{"name":"val peerWhoRemoved: HMSPeer?","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.peerWhoRemoved","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/peer-who-removed.html","searchKeys":["peerWhoRemoved","val peerWhoRemoved: HMSPeer?","live.hms.video.sdk.models.HMSRemovedFromRoom.peerWhoRemoved"]},{"name":"val peerid: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.peerid","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/peerid.html","searchKeys":["peerid","val peerid: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.peerid"]},{"name":"val peers: List","description":"live.hms.video.sdk.models.PeerSearchResponse.peers","location":"lib/live.hms.video.sdk.models/-peer-search-response/peers.html","searchKeys":["peers","val peers: List","live.hms.video.sdk.models.PeerSearchResponse.peers"]},{"name":"val permission: PermissionsParams","description":"live.hms.video.sdk.models.role.HMSRole.permission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/permission.html","searchKeys":["permission","val permission: PermissionsParams","live.hms.video.sdk.models.role.HMSRole.permission"]},{"name":"val permissions: List?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.permissions","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/permissions.html","searchKeys":["permissions","val permissions: List?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.permissions"]},{"name":"val phoneCallState: PhoneCallState","description":"live.hms.video.media.settings.HMSAudioTrackSettings.phoneCallState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/phone-call-state.html","searchKeys":["phoneCallState","val phoneCallState: PhoneCallState","live.hms.video.media.settings.HMSAudioTrackSettings.phoneCallState"]},{"name":"val playlistType: HMSHLSPlaylistType?","description":"live.hms.video.sdk.models.HMSHLSVariant.playlistType","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/playlist-type.html","searchKeys":["playlistType","val playlistType: HMSHLSPlaylistType?","live.hms.video.sdk.models.HMSHLSVariant.playlistType"]},{"name":"val pliCount: Long?","description":"live.hms.video.connection.degredation.Video.pliCount","location":"lib/live.hms.video.connection.degredation/-video/pli-count.html","searchKeys":["pliCount","val pliCount: Long?","live.hms.video.connection.degredation.Video.pliCount"]},{"name":"val pollId: String","description":"live.hms.video.polls.HMSPollBuilder.pollId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.HMSPollBuilder.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.models.HmsPoll.pollId","location":"lib/live.hms.video.polls.models/-hms-poll/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.models.HmsPoll.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.models.answer.PollAnswerResponse.pollId","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.models.answer.PollAnswerResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.pollId","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.HMSPollLeaderboardResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollCreateResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-create-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollCreateResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollGetResponsesReply.pollId","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollGetResponsesReply.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollQuestionGetResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-question-get-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollQuestionGetResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollResultsResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-results-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollResultsResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollStartRequest.pollId","location":"lib/live.hms.video.polls.network/-poll-start-request/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollStartRequest.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.SetQuestionsResponse.pollId","location":"lib/live.hms.video.polls.network/-set-questions-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.SetQuestionsResponse.pollId"]},{"name":"val pollId: String? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.pollId","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/poll-id.html","searchKeys":["pollId","val pollId: String? = null","live.hms.video.polls.models.HmsPollCreationParams.pollId"]},{"name":"val pollPeer: HMSPollResponsePeerInfo?","description":"live.hms.video.polls.network.LeaderboardQuestion.pollPeer","location":"lib/live.hms.video.polls.network/-leaderboard-question/poll-peer.html","searchKeys":["pollPeer","val pollPeer: HMSPollResponsePeerInfo?","live.hms.video.polls.network.LeaderboardQuestion.pollPeer"]},{"name":"val pollRead: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.pollRead","location":"lib/live.hms.video.sdk.models.role/-permissions-params/poll-read.html","searchKeys":["pollRead","val pollRead: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.pollRead"]},{"name":"val pollWrite: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.pollWrite","location":"lib/live.hms.video.sdk.models.role/-permissions-params/poll-write.html","searchKeys":["pollWrite","val pollWrite: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.pollWrite"]},{"name":"val polls: List","description":"live.hms.video.interactivity.HmsInteractivityCenter.polls","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/polls.html","searchKeys":["polls","val polls: List","live.hms.video.interactivity.HmsInteractivityCenter.polls"]},{"name":"val position: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.position","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/position.html","searchKeys":["position","val position: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.position"]},{"name":"val position: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.position","location":"lib/live.hms.video.polls.network/-leaderboard-question/position.html","searchKeys":["position","val position: Long?","live.hms.video.polls.network.LeaderboardQuestion.position"]},{"name":"val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/preview.html","searchKeys":["preview","val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.preview"]},{"name":"val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.previewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/preview-header.html","searchKeys":["previewHeader","val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.previewHeader"]},{"name":"val primaryBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-bright.html","searchKeys":["primaryBright","val primaryBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryBright"]},{"name":"val primaryDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-default.html","searchKeys":["primaryDefault","val primaryDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDefault"]},{"name":"val primaryDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-dim.html","searchKeys":["primaryDim","val primaryDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDim"]},{"name":"val primaryDisabled: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDisabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-disabled.html","searchKeys":["primaryDisabled","val primaryDisabled: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDisabled"]},{"name":"val priority: Int","description":"live.hms.video.sdk.models.role.HMSRole.priority","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/priority.html","searchKeys":["priority","val priority: Int","live.hms.video.sdk.models.role.HMSRole.priority"]},{"name":"val privateChatEnabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.privateChatEnabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/private-chat-enabled.html","searchKeys":["privateChatEnabled","val privateChatEnabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.privateChatEnabled"]},{"name":"val prominentRoles: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.prominentRoles","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/prominent-roles.html","searchKeys":["prominentRoles","val prominentRoles: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.prominentRoles"]},{"name":"val publicChatEnabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.publicChatEnabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/public-chat-enabled.html","searchKeys":["publicChatEnabled","val publicChatEnabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.publicChatEnabled"]},{"name":"val publishIceCandidatesGathered: List","description":"live.hms.video.diagnostics.models.MediaServerReport.publishIceCandidatesGathered","location":"lib/live.hms.video.diagnostics.models/-media-server-report/publish-ice-candidates-gathered.html","searchKeys":["publishIceCandidatesGathered","val publishIceCandidatesGathered: List","live.hms.video.diagnostics.models.MediaServerReport.publishIceCandidatesGathered"]},{"name":"val publishStats: Stats?","description":"live.hms.video.signal.init.ServerConfiguration.publishStats","location":"lib/live.hms.video.signal.init/-server-configuration/publish-stats.html","searchKeys":["publishStats","val publishStats: Stats?","live.hms.video.signal.init.ServerConfiguration.publishStats"]},{"name":"val qualityLimitationReason: QualityLimitationReasons","description":"live.hms.video.connection.stats.HMSLocalVideoStats.qualityLimitationReason","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/quality-limitation-reason.html","searchKeys":["qualityLimitationReason","val qualityLimitationReason: QualityLimitationReasons","live.hms.video.connection.stats.HMSLocalVideoStats.qualityLimitationReason"]},{"name":"val qualityLimitationResolutionChanges: Long? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.qualityLimitationResolutionChanges","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/quality-limitation-resolution-changes.html","searchKeys":["qualityLimitationResolutionChanges","val qualityLimitationResolutionChanges: Long? = null","live.hms.video.connection.degredation.QualityLimitationReasons.qualityLimitationResolutionChanges"]},{"name":"val qualityLimitations: QualityLimitationReasons","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.qualityLimitations","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/quality-limitations.html","searchKeys":["qualityLimitations","val qualityLimitations: QualityLimitationReasons","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.qualityLimitations"]},{"name":"val question: HMSPollQuestion","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.question","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/question.html","searchKeys":["question","val question: HMSPollQuestion","live.hms.video.polls.models.question.HmsPollQuestionContainer.question"]},{"name":"val question: List","description":"live.hms.video.polls.network.PollResultsResponse.question","location":"lib/live.hms.video.polls.network/-poll-results-response/question.html","searchKeys":["question","val question: List","live.hms.video.polls.network.PollResultsResponse.question"]},{"name":"val questionContainer: HmsPollQuestionCreation","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.questionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/question-container.html","searchKeys":["questionContainer","val questionContainer: HmsPollQuestionCreation","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.questionContainer"]},{"name":"val questionCount: Int? = null","description":"live.hms.video.polls.models.HmsPoll.questionCount","location":"lib/live.hms.video.polls.models/-hms-poll/question-count.html","searchKeys":["questionCount","val questionCount: Int? = null","live.hms.video.polls.models.HmsPoll.questionCount"]},{"name":"val questionID: Int","description":"live.hms.video.polls.models.question.HMSPollQuestion.questionID","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/question-i-d.html","searchKeys":["questionID","val questionID: Int","live.hms.video.polls.models.question.HMSPollQuestion.questionID"]},{"name":"val questionID: Int","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.questionID","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/question-i-d.html","searchKeys":["questionID","val questionID: Int","live.hms.video.polls.models.question.HmsPollQuestionCreation.questionID"]},{"name":"val questionId: Int","description":"live.hms.video.polls.models.answer.HmsPollAnswer.questionId","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/question-id.html","searchKeys":["questionId","val questionId: Int","live.hms.video.polls.models.answer.HmsPollAnswer.questionId"]},{"name":"val questionIndex: Int","description":"live.hms.video.polls.models.answer.PollAnswerItem.questionIndex","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/question-index.html","searchKeys":["questionIndex","val questionIndex: Int","live.hms.video.polls.models.answer.PollAnswerItem.questionIndex"]},{"name":"val questionIndex: Long","description":"live.hms.video.polls.network.PollResultsItems.questionIndex","location":"lib/live.hms.video.polls.network/-poll-results-items/question-index.html","searchKeys":["questionIndex","val questionIndex: Long","live.hms.video.polls.network.PollResultsItems.questionIndex"]},{"name":"val questionIndex: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.questionIndex","location":"lib/live.hms.video.polls.network/-leaderboard-question/question-index.html","searchKeys":["questionIndex","val questionIndex: Long?","live.hms.video.polls.network.LeaderboardQuestion.questionIndex"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.PollStatsQuestions.questionType","location":"lib/live.hms.video.polls.models/-poll-stats-questions/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.PollStatsQuestions.questionType"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.answer.HmsPollAnswer.questionType","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.answer.HmsPollAnswer.questionType"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.questionType","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.network.HMSPollQuestionResponse.questionType"]},{"name":"val questions: List","description":"live.hms.video.polls.HMSPollBuilder.questions","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.HMSPollBuilder.questions"]},{"name":"val questions: List? = null","description":"live.hms.video.polls.network.QuestionContainer.questions","location":"lib/live.hms.video.polls.network/-question-container/questions.html","searchKeys":["questions","val questions: List? = null","live.hms.video.polls.network.QuestionContainer.questions"]},{"name":"val questions: List","description":"live.hms.video.polls.network.PollQuestionGetResponse.questions","location":"lib/live.hms.video.polls.network/-poll-question-get-response/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.network.PollQuestionGetResponse.questions"]},{"name":"val questions: List","description":"live.hms.video.polls.network.PollResultsDisplay.questions","location":"lib/live.hms.video.polls.network/-poll-results-display/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.network.PollResultsDisplay.questions"]},{"name":"val reader: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.reader","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/reader.html","searchKeys":["reader","val reader: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.reader"]},{"name":"val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.realTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/real-time-controls.html","searchKeys":["realTimeControls","val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.realTimeControls"]},{"name":"val reason: QualityLimitationReason","description":"live.hms.video.connection.degredation.QualityLimitationReasons.reason","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/reason.html","searchKeys":["reason","val reason: QualityLimitationReason","live.hms.video.connection.degredation.QualityLimitationReasons.reason"]},{"name":"val reason: String","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.reason","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/reason.html","searchKeys":["reason","val reason: String","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.reason"]},{"name":"val reason: String","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.reason","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/reason.html","searchKeys":["reason","val reason: String","live.hms.video.sdk.models.HMSRemovedFromRoom.reason"]},{"name":"val recipient: HMSMessageRecipient","description":"live.hms.video.sdk.models.HMSMessage.recipient","location":"lib/live.hms.video.sdk.models/-h-m-s-message/recipient.html","searchKeys":["recipient","val recipient: HMSMessageRecipient","live.hms.video.sdk.models.HMSMessage.recipient"]},{"name":"val record: Boolean","description":"live.hms.video.sdk.models.HMSRecordingConfig.record","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/record.html","searchKeys":["record","val record: Boolean","live.hms.video.sdk.models.HMSRecordingConfig.record"]},{"name":"val recoverGracePeriodSeconds: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.recoverGracePeriodSeconds","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/recover-grace-period-seconds.html","searchKeys":["recoverGracePeriodSeconds","val recoverGracePeriodSeconds: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.recoverGracePeriodSeconds"]},{"name":"val relativePacketArrivalDelay: Double?","description":"live.hms.video.connection.degredation.Audio.relativePacketArrivalDelay","location":"lib/live.hms.video.connection.degredation/-audio/relative-packet-arrival-delay.html","searchKeys":["relativePacketArrivalDelay","val relativePacketArrivalDelay: Double?","live.hms.video.connection.degredation.Audio.relativePacketArrivalDelay"]},{"name":"val removeFromStageLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.removeFromStageLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/remove-from-stage-label.html","searchKeys":["removeFromStageLabel","val removeFromStageLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.removeFromStageLabel"]},{"name":"val removeOthers: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.removeOthers","location":"lib/live.hms.video.sdk.models.role/-permissions-params/remove-others.html","searchKeys":["removeOthers","val removeOthers: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.removeOthers"]},{"name":"val removedSamplesForAcceleration: BigInteger?","description":"live.hms.video.connection.degredation.Audio.removedSamplesForAcceleration","location":"lib/live.hms.video.connection.degredation/-audio/removed-samples-for-acceleration.html","searchKeys":["removedSamplesForAcceleration","val removedSamplesForAcceleration: BigInteger?","live.hms.video.connection.degredation.Audio.removedSamplesForAcceleration"]},{"name":"val requestedBy: HMSPeer?","description":"live.hms.video.sdk.models.HMSRoleChangeRequest.requestedBy","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/requested-by.html","searchKeys":["requestedBy","val requestedBy: HMSPeer?","live.hms.video.sdk.models.HMSRoleChangeRequest.requestedBy"]},{"name":"val requestedBy: HMSPeer?","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.requestedBy","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/requested-by.html","searchKeys":["requestedBy","val requestedBy: HMSPeer?","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.requestedBy"]},{"name":"val resolution: HMSRtmpVideoResolution? = null","description":"live.hms.video.sdk.models.HMSRecordingConfig.resolution","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/resolution.html","searchKeys":["resolution","val resolution: HMSRtmpVideoResolution? = null","live.hms.video.sdk.models.HMSRecordingConfig.resolution"]},{"name":"val resolution: HMSVideoResolution","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution","live.hms.video.media.settings.HMSSimulcastLayerDefinition.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.resolution","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.resolution","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.stats.HMSLocalVideoStats.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.resolution","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.stats.HMSRemoteVideoStats.resolution"]},{"name":"val resolution: Size","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.resolution","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/resolution.html","searchKeys":["resolution","val resolution: Size","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.resolution"]},{"name":"val respondedCorrectlyPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedCorrectlyPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/responded-correctly-peers-count.html","searchKeys":["respondedCorrectlyPeersCount","val respondedCorrectlyPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedCorrectlyPeersCount"]},{"name":"val respondedPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/responded-peers-count.html","searchKeys":["respondedPeersCount","val respondedPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedPeersCount"]},{"name":"val response: HMSPollQuestionResponse","description":"live.hms.video.polls.models.network.SingleResponse.response","location":"lib/live.hms.video.polls.models.network/-single-response/response.html","searchKeys":["response","val response: HMSPollQuestionResponse","live.hms.video.polls.models.network.SingleResponse.response"]},{"name":"val responseId: String","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.responseId","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/response-id.html","searchKeys":["responseId","val responseId: String","live.hms.video.polls.models.network.HMSPollQuestionResponse.responseId"]},{"name":"val responses: List","description":"live.hms.video.polls.network.PollGetResponsesReply.responses","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/responses.html","searchKeys":["responses","val responses: List","live.hms.video.polls.network.PollGetResponsesReply.responses"]},{"name":"val responses: List? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.responses","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/responses.html","searchKeys":["responses","val responses: List? = null","live.hms.video.polls.models.HmsPollCreationParams.responses"]},{"name":"val result: List","description":"live.hms.video.polls.models.answer.PollAnswerResponse.result","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/result.html","searchKeys":["result","val result: List","live.hms.video.polls.models.answer.PollAnswerResponse.result"]},{"name":"val result: Result?","description":"live.hms.video.sdk.models.TranscriptionStartResponse.result","location":"lib/live.hms.video.sdk.models/-transcription-start-response/result.html","searchKeys":["result","val result: Result?","live.hms.video.sdk.models.TranscriptionStartResponse.result"]},{"name":"val result: Result?","description":"live.hms.video.sdk.models.TranscriptionStopResponse.result","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/result.html","searchKeys":["result","val result: Result?","live.hms.video.sdk.models.TranscriptionStopResponse.result"]},{"name":"val rid: String?","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.rid","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.connection.stats.clientside.model.VideoAnalytics.rid"]},{"name":"val rid: String?","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.rid","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.rid"]},{"name":"val rid: String?","description":"live.hms.video.sdk.models.role.LayerParams.rid","location":"lib/live.hms.video.sdk.models.role/-layer-params/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.sdk.models.role.LayerParams.rid"]},{"name":"val role: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.role","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/role.html","searchKeys":["role","val role: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.role"]},{"name":"val roleId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.roleId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/role-id.html","searchKeys":["roleId","val roleId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.roleId"]},{"name":"val rolesThatCanViewResponses: List","description":"live.hms.video.polls.models.HmsPoll.rolesThatCanViewResponses","location":"lib/live.hms.video.polls.models/-hms-poll/roles-that-can-view-responses.html","searchKeys":["rolesThatCanViewResponses","val rolesThatCanViewResponses: List","live.hms.video.polls.models.HmsPoll.rolesThatCanViewResponses"]},{"name":"val rolesThatCanViewResponses: List?","description":"live.hms.video.polls.HMSPollBuilder.rolesThatCanViewResponses","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/roles-that-can-view-responses.html","searchKeys":["rolesThatCanViewResponses","val rolesThatCanViewResponses: List?","live.hms.video.polls.HMSPollBuilder.rolesThatCanViewResponses"]},{"name":"val rolesThatCanVote: List","description":"live.hms.video.polls.models.HmsPoll.rolesThatCanVote","location":"lib/live.hms.video.polls.models/-hms-poll/roles-that-can-vote.html","searchKeys":["rolesThatCanVote","val rolesThatCanVote: List","live.hms.video.polls.models.HmsPoll.rolesThatCanVote"]},{"name":"val rolesThatCanVote: List?","description":"live.hms.video.polls.HMSPollBuilder.rolesThatCanVote","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/roles-that-can-vote.html","searchKeys":["rolesThatCanVote","val rolesThatCanVote: List?","live.hms.video.polls.HMSPollBuilder.rolesThatCanVote"]},{"name":"val rolesWhiteList: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.rolesWhiteList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/roles-white-list.html","searchKeys":["rolesWhiteList","val rolesWhiteList: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.rolesWhiteList"]},{"name":"val roomCode: String","description":"live.hms.video.signal.init.TokenRequest.roomCode","location":"lib/live.hms.video.signal.init/-token-request/room-code.html","searchKeys":["roomCode","val roomCode: String","live.hms.video.signal.init.TokenRequest.roomCode"]},{"name":"val roomWasEnded: Boolean","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.roomWasEnded","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/room-was-ended.html","searchKeys":["roomWasEnded","val roomWasEnded: Boolean","live.hms.video.sdk.models.HMSRemovedFromRoom.roomWasEnded"]},{"name":"val roundTripTime: Double","description":"live.hms.video.connection.stats.HMSRTCStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double","live.hms.video.connection.stats.HMSRTCStats.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.roundTripTime","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.roundTripTime","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.stats.HMSLocalAudioStats.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.roundTripTime"]},{"name":"val roundTripTimeMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.roundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/round-trip-time-ms.html","searchKeys":["roundTripTimeMs","val roundTripTimeMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.roundTripTimeMs"]},{"name":"val rtmpStreaming: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.rtmpStreaming","location":"lib/live.hms.video.sdk.models.role/-permissions-params/rtmp-streaming.html","searchKeys":["rtmpStreaming","val rtmpStreaming: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.rtmpStreaming"]},{"name":"val rtmpUrls: List","description":"live.hms.video.sdk.models.HMSRecordingConfig.rtmpUrls","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/rtmp-urls.html","searchKeys":["rtmpUrls","val rtmpUrls: List","live.hms.video.sdk.models.HMSRecordingConfig.rtmpUrls"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSBrowserRecordingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSHLSStreamingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSHLSStreamingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSRtmpStreamingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSServerRecordingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSServerRecordingState.running"]},{"name":"val running: Boolean?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.running","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/running.html","searchKeys":["running","val running: Boolean?","live.hms.video.sdk.models.HmsHlsRecordingState.running"]},{"name":"val scaleResolutionDownBy: Float?","description":"live.hms.video.sdk.models.role.LayerParams.scaleResolutionDownBy","location":"lib/live.hms.video.sdk.models.role/-layer-params/scale-resolution-down-by.html","searchKeys":["scaleResolutionDownBy","val scaleResolutionDownBy: Float?","live.hms.video.sdk.models.role.LayerParams.scaleResolutionDownBy"]},{"name":"val score: Float?","description":"live.hms.video.polls.network.LeaderboardQuestion.score","location":"lib/live.hms.video.polls.network/-leaderboard-question/score.html","searchKeys":["score","val score: Float?","live.hms.video.polls.network.LeaderboardQuestion.score"]},{"name":"val score: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.score","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/score.html","searchKeys":["score","val score: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.score"]},{"name":"val scoreMap: SortedMap","description":"live.hms.video.signal.init.NetworkHealth.scoreMap","location":"lib/live.hms.video.signal.init/-network-health/score-map.html","searchKeys":["scoreMap","val scoreMap: SortedMap","live.hms.video.signal.init.NetworkHealth.scoreMap"]},{"name":"val screen: VideoParams?","description":"live.hms.video.sdk.models.role.PublishParams.screen","location":"lib/live.hms.video.sdk.models.role/-publish-params/screen.html","searchKeys":["screen","val screen: VideoParams?","live.hms.video.sdk.models.role.PublishParams.screen"]},{"name":"val screen: VideoSimulcastLayersParams?","description":"live.hms.video.sdk.models.role.Simulcast.screen","location":"lib/live.hms.video.sdk.models.role/-simulcast/screen.html","searchKeys":["screen","val screen: VideoSimulcastLayersParams?","live.hms.video.sdk.models.role.Simulcast.screen"]},{"name":"val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/screens.html","searchKeys":["screens","val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.screens"]},{"name":"val secondaryBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-bright.html","searchKeys":["secondaryBright","val secondaryBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryBright"]},{"name":"val secondaryDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-default.html","searchKeys":["secondaryDefault","val secondaryDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDefault"]},{"name":"val secondaryDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-dim.html","searchKeys":["secondaryDim","val secondaryDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDim"]},{"name":"val secondaryDisabled: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDisabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-disabled.html","searchKeys":["secondaryDisabled","val secondaryDisabled: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDisabled"]},{"name":"val selectedOption: Int = 0","description":"live.hms.video.polls.models.answer.HmsPollAnswer.selectedOption","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/selected-option.html","searchKeys":["selectedOption","val selectedOption: Int = 0","live.hms.video.polls.models.answer.HmsPollAnswer.selectedOption"]},{"name":"val selectedOption: Int?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOption","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/selected-option.html","searchKeys":["selectedOption","val selectedOption: Int?","live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOption"]},{"name":"val selectedOptions: List?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOptions","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/selected-options.html","searchKeys":["selectedOptions","val selectedOptions: List?","live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOptions"]},{"name":"val selectedOptions: List? = null","description":"live.hms.video.polls.models.answer.HmsPollAnswer.selectedOptions","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/selected-options.html","searchKeys":["selectedOptions","val selectedOptions: List? = null","live.hms.video.polls.models.answer.HmsPollAnswer.selectedOptions"]},{"name":"val sequenceNumber: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.sequenceNumber","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/sequence-number.html","searchKeys":["sequenceNumber","val sequenceNumber: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.sequenceNumber"]},{"name":"val serverName: String","description":"live.hms.video.events.AgentType.serverName","location":"lib/live.hms.video.events/-agent-type/server-name.html","searchKeys":["serverName","val serverName: String","live.hms.video.events.AgentType.serverName"]},{"name":"val serverName: String","description":"live.hms.video.sdk.featureflags.Features.serverName","location":"lib/live.hms.video.sdk.featureflags/-features/server-name.html","searchKeys":["serverName","val serverName: String","live.hms.video.sdk.featureflags.Features.serverName"]},{"name":"val service: HMSScreenCaptureService","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder.service","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/service.html","searchKeys":["service","val service: HMSScreenCaptureService","live.hms.video.services.HMSScreenCaptureService.LocalBinder.service"]},{"name":"val sfu: Sfu?","description":"live.hms.video.sdk.peerlist.models.Recording.sfu","location":"lib/live.hms.video.sdk.peerlist.models/-recording/sfu.html","searchKeys":["sfu","val sfu: Sfu?","live.hms.video.sdk.peerlist.models.Recording.sfu"]},{"name":"val shouldSkipPIIEvents: Boolean","description":"live.hms.video.sdk.HMSSDK.shouldSkipPIIEvents","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/should-skip-p-i-i-events.html","searchKeys":["shouldSkipPIIEvents","val shouldSkipPIIEvents: Boolean","live.hms.video.sdk.HMSSDK.shouldSkipPIIEvents"]},{"name":"val signallingReport: SignallingReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.signallingReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/signalling-report.html","searchKeys":["signallingReport","val signallingReport: SignallingReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.signallingReport"]},{"name":"val silentConcealedSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.silentConcealedSamples","location":"lib/live.hms.video.connection.degredation/-audio/silent-concealed-samples.html","searchKeys":["silentConcealedSamples","val silentConcealedSamples: BigInteger?","live.hms.video.connection.degredation.Audio.silentConcealedSamples"]},{"name":"val simulcast: Boolean","description":"live.hms.video.media.settings.HMSTrackSettings.simulcast","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/simulcast.html","searchKeys":["simulcast","val simulcast: Boolean","live.hms.video.media.settings.HMSTrackSettings.simulcast"]},{"name":"val simulcast: Simulcast?","description":"live.hms.video.sdk.models.role.PublishParams.simulcast","location":"lib/live.hms.video.sdk.models.role/-publish-params/simulcast.html","searchKeys":["simulcast","val simulcast: Simulcast?","live.hms.video.sdk.models.role.PublishParams.simulcast"]},{"name":"val singleFilePerLayer: Boolean","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.singleFilePerLayer","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/single-file-per-layer.html","searchKeys":["singleFilePerLayer","val singleFilePerLayer: Boolean","live.hms.video.sdk.models.HMSHlsRecordingConfig.singleFilePerLayer"]},{"name":"val skipPreview: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.skipPreview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/skip-preview.html","searchKeys":["skipPreview","val skipPreview: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.skipPreview"]},{"name":"val skipPreviewForRoleChange: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.skipPreviewForRoleChange","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/skip-preview-for-role-change.html","searchKeys":["skipPreviewForRoleChange","val skipPreviewForRoleChange: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.skipPreviewForRoleChange"]},{"name":"val skipped: Boolean","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.skipped","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/skipped.html","searchKeys":["skipped","val skipped: Boolean","live.hms.video.polls.models.network.HMSPollQuestionResponse.skipped"]},{"name":"val skipped: Boolean = false","description":"live.hms.video.polls.models.answer.HmsPollAnswer.skipped","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/skipped.html","searchKeys":["skipped","val skipped: Boolean = false","live.hms.video.polls.models.answer.HmsPollAnswer.skipped"]},{"name":"val skipped: Long","description":"live.hms.video.polls.models.PollStatsQuestions.skipped","location":"lib/live.hms.video.polls.models/-poll-stats-questions/skipped.html","searchKeys":["skipped","val skipped: Long","live.hms.video.polls.models.PollStatsQuestions.skipped"]},{"name":"val skipped: Long","description":"live.hms.video.polls.network.PollResultsItems.skipped","location":"lib/live.hms.video.polls.network/-poll-results-items/skipped.html","searchKeys":["skipped","val skipped: Long","live.hms.video.polls.network.PollResultsItems.skipped"]},{"name":"val source: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.source","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/source.html","searchKeys":["source","val source: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.source"]},{"name":"val source: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.source","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/source.html","searchKeys":["source","val source: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.source"]},{"name":"val ssrc: Long?","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.ssrc","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/ssrc.html","searchKeys":["ssrc","val ssrc: Long?","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.ssrc"]},{"name":"val start: Int","description":"live.hms.video.sdk.transcripts.HmsTranscript.start","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/start.html","searchKeys":["start","val start: Int","live.hms.video.sdk.transcripts.HmsTranscript.start"]},{"name":"val startedAt: Long","description":"live.hms.video.polls.models.HmsPoll.startedAt","location":"lib/live.hms.video.polls.models/-hms-poll/started-at.html","searchKeys":["startedAt","val startedAt: Long","live.hms.video.polls.models.HmsPoll.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSBrowserRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSHLSVariant.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSHLSVariant.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSRtmpStreamingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSServerRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSServerRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HmsHlsRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Hls.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-hls/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Hls.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.startedAt"]},{"name":"val startedBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.startedBy","location":"lib/live.hms.video.polls.models/-hms-poll/started-by.html","searchKeys":["startedBy","val startedBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.startedBy"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Browser.state","location":"lib/live.hms.video.sdk.peerlist.models/-browser/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Browser.state"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Hls.state","location":"lib/live.hms.video.sdk.peerlist.models/-hls/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Hls.state"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Sfu.state","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Sfu.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HMSBrowserRecordingState.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HMSServerRecordingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HMSServerRecordingState.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HmsHlsRecordingState.state","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HmsHlsRecordingState.state"]},{"name":"val state: HMSStreamingState","description":"live.hms.video.sdk.models.HMSHLSStreamingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/state.html","searchKeys":["state","val state: HMSStreamingState","live.hms.video.sdk.models.HMSHLSStreamingState.state"]},{"name":"val state: HmsPollState","description":"live.hms.video.polls.models.HmsPoll.state","location":"lib/live.hms.video.polls.models/-hms-poll/state.html","searchKeys":["state","val state: HmsPollState","live.hms.video.polls.models.HmsPoll.state"]},{"name":"val state: State","description":"live.hms.video.whiteboard.HMSWhiteboard.state","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/state.html","searchKeys":["state","val state: State","live.hms.video.whiteboard.HMSWhiteboard.state"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.stoppedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.models.HMSBrowserRecordingState.stoppedAt"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.stoppedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.models.HMSRtmpStreamingState.stoppedAt"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.stoppedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.stoppedAt"]},{"name":"val stoppedBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.stoppedBy","location":"lib/live.hms.video.polls.models/-hms-poll/stopped-by.html","searchKeys":["stoppedBy","val stoppedBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.stoppedBy"]},{"name":"val subTitle: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.subTitle","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/sub-title.html","searchKeys":["subTitle","val subTitle: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.subTitle"]},{"name":"val subscribeDegradationParam: SubscribeDegradationParams?","description":"live.hms.video.sdk.models.role.SubscribeParams.subscribeDegradationParam","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-degradation-param.html","searchKeys":["subscribeDegradationParam","val subscribeDegradationParam: SubscribeDegradationParams?","live.hms.video.sdk.models.role.SubscribeParams.subscribeDegradationParam"]},{"name":"val subscribeIceCandidatesGathered: List","description":"live.hms.video.diagnostics.models.MediaServerReport.subscribeIceCandidatesGathered","location":"lib/live.hms.video.diagnostics.models/-media-server-report/subscribe-ice-candidates-gathered.html","searchKeys":["subscribeIceCandidatesGathered","val subscribeIceCandidatesGathered: List","live.hms.video.diagnostics.models.MediaServerReport.subscribeIceCandidatesGathered"]},{"name":"val subscribeParams: SubscribeParams?","description":"live.hms.video.sdk.models.role.HMSRole.subscribeParams","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/subscribe-params.html","searchKeys":["subscribeParams","val subscribeParams: SubscribeParams?","live.hms.video.sdk.models.role.HMSRole.subscribeParams"]},{"name":"val subscribeStats: Stats?","description":"live.hms.video.signal.init.ServerConfiguration.subscribeStats","location":"lib/live.hms.video.signal.init/-server-configuration/subscribe-stats.html","searchKeys":["subscribeStats","val subscribeStats: Stats?","live.hms.video.signal.init.ServerConfiguration.subscribeStats"]},{"name":"val subscribeTo: ArrayList?","description":"live.hms.video.sdk.models.role.SubscribeParams.subscribeTo","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html","searchKeys":["subscribeTo","val subscribeTo: ArrayList?","live.hms.video.sdk.models.role.SubscribeParams.subscribeTo"]},{"name":"val suggestedRole: HMSRole","description":"live.hms.video.sdk.models.HMSRoleChangeRequest.suggestedRole","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/suggested-role.html","searchKeys":["suggestedRole","val suggestedRole: HMSRole","live.hms.video.sdk.models.HMSRoleChangeRequest.suggestedRole"]},{"name":"val summary: HMSPollLeaderboardSummary?","description":"live.hms.video.polls.network.PollLeaderboardResponse.summary","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/summary.html","searchKeys":["summary","val summary: HMSPollLeaderboardSummary?","live.hms.video.polls.network.PollLeaderboardResponse.summary"]},{"name":"val surfaceBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-bright.html","searchKeys":["surfaceBright","val surfaceBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBright"]},{"name":"val surfaceBrighter: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBrighter","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-brighter.html","searchKeys":["surfaceBrighter","val surfaceBrighter: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBrighter"]},{"name":"val surfaceDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-default.html","searchKeys":["surfaceDefault","val surfaceDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDefault"]},{"name":"val surfaceDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-dim.html","searchKeys":["surfaceDim","val surfaceDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDim"]},{"name":"val templateId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.templateId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/template-id.html","searchKeys":["templateId","val templateId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.templateId"]},{"name":"val text: String","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.text","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.text"]},{"name":"val text: String","description":"live.hms.video.polls.models.question.HMSPollQuestion.text","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.question.HMSPollQuestion.text"]},{"name":"val text: String","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.text","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.question.HmsPollQuestionCreation.text"]},{"name":"val text: String?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.text","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/text.html","searchKeys":["text","val text: String?","live.hms.video.polls.models.network.HMSPollQuestionResponse.text"]},{"name":"val text: String?","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.text","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/text.html","searchKeys":["text","val text: String?","live.hms.video.polls.models.question.HMSPollQuestionOption.text"]},{"name":"val themes: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.themes","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/themes.html","searchKeys":["themes","val themes: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.themes"]},{"name":"val timeout: Long","description":"live.hms.video.signal.init.NetworkHealth.timeout","location":"lib/live.hms.video.signal.init/-network-health/timeout.html","searchKeys":["timeout","val timeout: Long","live.hms.video.signal.init.NetworkHealth.timeout"]},{"name":"val timestamp: Long","description":"live.hms.video.sdk.models.HMSMessageSendResponse.timestamp","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/timestamp.html","searchKeys":["timestamp","val timestamp: Long","live.hms.video.sdk.models.HMSMessageSendResponse.timestamp"]},{"name":"val timestampUs: Double?","description":"live.hms.video.connection.degredation.Peer.timestampUs","location":"lib/live.hms.video.connection.degredation/-peer/timestamp-us.html","searchKeys":["timestampUs","val timestampUs: Double?","live.hms.video.connection.degredation.Peer.timestampUs"]},{"name":"val title: String","description":"live.hms.video.polls.HMSPollBuilder.title","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/title.html","searchKeys":["title","val title: String","live.hms.video.polls.HMSPollBuilder.title"]},{"name":"val title: String","description":"live.hms.video.polls.models.HmsPoll.title","location":"lib/live.hms.video.polls.models/-hms-poll/title.html","searchKeys":["title","val title: String","live.hms.video.polls.models.HmsPoll.title"]},{"name":"val title: String","description":"live.hms.video.polls.models.HmsPollCreationParams.title","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/title.html","searchKeys":["title","val title: String","live.hms.video.polls.models.HmsPollCreationParams.title"]},{"name":"val title: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.title","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/title.html","searchKeys":["title","val title: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.title"]},{"name":"val title: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.title","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/title.html","searchKeys":["title","val title: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.title"]},{"name":"val title: String? = null","description":"live.hms.video.whiteboard.HMSWhiteboard.title","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/title.html","searchKeys":["title","val title: String? = null","live.hms.video.whiteboard.HMSWhiteboard.title"]},{"name":"val token: String","description":"live.hms.video.signal.init.ShortCodeInput.token","location":"lib/live.hms.video.signal.init/-short-code-input/token.html","searchKeys":["token","val token: String","live.hms.video.signal.init.ShortCodeInput.token"]},{"name":"val token: String?","description":"live.hms.video.signal.init.TokenResult.token","location":"lib/live.hms.video.signal.init/-token-result/token.html","searchKeys":["token","val token: String?","live.hms.video.signal.init.TokenResult.token"]},{"name":"val token: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.token","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/token.html","searchKeys":["token","val token: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.token"]},{"name":"val total: Long","description":"live.hms.video.polls.network.PollResultsItems.total","location":"lib/live.hms.video.polls.network/-poll-results-items/total.html","searchKeys":["total","val total: Long","live.hms.video.polls.network.PollResultsItems.total"]},{"name":"val totalAudioEnergy: Double?","description":"live.hms.video.connection.degredation.Audio.totalAudioEnergy","location":"lib/live.hms.video.connection.degredation/-audio/total-audio-energy.html","searchKeys":["totalAudioEnergy","val totalAudioEnergy: Double?","live.hms.video.connection.degredation.Audio.totalAudioEnergy"]},{"name":"val totalDecodeTime: Double?","description":"live.hms.video.connection.degredation.Video.totalDecodeTime","location":"lib/live.hms.video.connection.degredation/-video/total-decode-time.html","searchKeys":["totalDecodeTime","val totalDecodeTime: Double?","live.hms.video.connection.degredation.Video.totalDecodeTime"]},{"name":"val totalDistinctUsers: Long","description":"live.hms.video.polls.network.PollResultsResponse.totalDistinctUsers","location":"lib/live.hms.video.polls.network/-poll-results-response/total-distinct-users.html","searchKeys":["totalDistinctUsers","val totalDistinctUsers: Long","live.hms.video.polls.network.PollResultsResponse.totalDistinctUsers"]},{"name":"val totalDistinctUsers: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.totalDistinctUsers","location":"lib/live.hms.video.polls.network/-poll-results-display/total-distinct-users.html","searchKeys":["totalDistinctUsers","val totalDistinctUsers: Long? = null","live.hms.video.polls.network.PollResultsDisplay.totalDistinctUsers"]},{"name":"val totalFramesDuration: Double?","description":"live.hms.video.connection.degredation.Video.totalFramesDuration","location":"lib/live.hms.video.connection.degredation/-video/total-frames-duration.html","searchKeys":["totalFramesDuration","val totalFramesDuration: Double?","live.hms.video.connection.degredation.Video.totalFramesDuration"]},{"name":"val totalFreezesDuration: Double?","description":"live.hms.video.connection.degredation.Video.totalFreezesDuration","location":"lib/live.hms.video.connection.degredation/-video/total-freezes-duration.html","searchKeys":["totalFreezesDuration","val totalFreezesDuration: Double?","live.hms.video.connection.degredation.Video.totalFreezesDuration"]},{"name":"val totalInterFrameDelay: Double?","description":"live.hms.video.connection.degredation.Video.totalInterFrameDelay","location":"lib/live.hms.video.connection.degredation/-video/total-inter-frame-delay.html","searchKeys":["totalInterFrameDelay","val totalInterFrameDelay: Double?","live.hms.video.connection.degredation.Video.totalInterFrameDelay"]},{"name":"val totalInterruptionDuration: Double?","description":"live.hms.video.connection.degredation.Audio.totalInterruptionDuration","location":"lib/live.hms.video.connection.degredation/-audio/total-interruption-duration.html","searchKeys":["totalInterruptionDuration","val totalInterruptionDuration: Double?","live.hms.video.connection.degredation.Audio.totalInterruptionDuration"]},{"name":"val totalPacketSendDelay: Double","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketSendDelay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total-packet-send-delay.html","searchKeys":["totalPacketSendDelay","val totalPacketSendDelay: Double","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketSendDelay"]},{"name":"val totalPackets: Long","description":"live.hms.video.connection.degredation.StatsBundle.totalPackets","location":"lib/live.hms.video.connection.degredation/-stats-bundle/total-packets.html","searchKeys":["totalPackets","val totalPackets: Long","live.hms.video.connection.degredation.StatsBundle.totalPackets"]},{"name":"val totalPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.totalPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/total-peers-count.html","searchKeys":["totalPeersCount","val totalPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.totalPeersCount"]},{"name":"val totalQuestions: Int","description":"live.hms.video.polls.network.SetQuestionsResponse.totalQuestions","location":"lib/live.hms.video.polls.network/-set-questions-response/total-questions.html","searchKeys":["totalQuestions","val totalQuestions: Int","live.hms.video.polls.network.SetQuestionsResponse.totalQuestions"]},{"name":"val totalResponse: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.totalResponse","location":"lib/live.hms.video.polls.network/-leaderboard-question/total-response.html","searchKeys":["totalResponse","val totalResponse: Long?","live.hms.video.polls.network.LeaderboardQuestion.totalResponse"]},{"name":"val totalResponses: Long","description":"live.hms.video.polls.network.PollResultsResponse.totalResponses","location":"lib/live.hms.video.polls.network/-poll-results-response/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long","live.hms.video.polls.network.PollResultsResponse.totalResponses"]},{"name":"val totalResponses: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.totalResponses","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.totalResponses"]},{"name":"val totalResponses: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.totalResponses","location":"lib/live.hms.video.polls.network/-poll-results-display/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long? = null","live.hms.video.polls.network.PollResultsDisplay.totalResponses"]},{"name":"val totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.Peer.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-peer/total-round-trip-time.html","searchKeys":["totalRoundTripTime","val totalRoundTripTime: Double?","live.hms.video.connection.degredation.Peer.totalRoundTripTime"]},{"name":"val totalSamplesDuration: Double?","description":"live.hms.video.connection.degredation.Audio.totalSamplesDuration","location":"lib/live.hms.video.connection.degredation/-audio/total-samples-duration.html","searchKeys":["totalSamplesDuration","val totalSamplesDuration: Double?","live.hms.video.connection.degredation.Audio.totalSamplesDuration"]},{"name":"val totalSamplesReceived: BigInteger?","description":"live.hms.video.connection.degredation.Audio.totalSamplesReceived","location":"lib/live.hms.video.connection.degredation/-audio/total-samples-received.html","searchKeys":["totalSamplesReceived","val totalSamplesReceived: BigInteger?","live.hms.video.connection.degredation.Audio.totalSamplesReceived"]},{"name":"val totalSquaredInterFrameDelay: Double?","description":"live.hms.video.connection.degredation.Video.totalSquaredInterFrameDelay","location":"lib/live.hms.video.connection.degredation/-video/total-squared-inter-frame-delay.html","searchKeys":["totalSquaredInterFrameDelay","val totalSquaredInterFrameDelay: Double?","live.hms.video.connection.degredation.Video.totalSquaredInterFrameDelay"]},{"name":"val totalUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.totalUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/total-users.html","searchKeys":["totalUsers","val totalUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.totalUsers"]},{"name":"val total_quality_limitation: QualityLimitation","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.total_quality_limitation","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total_quality_limitation.html","searchKeys":["total_quality_limitation","val total_quality_limitation: QualityLimitation","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.total_quality_limitation"]},{"name":"val track: HMSTrack","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.track","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/track.html","searchKeys":["track","val track: HMSTrack","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.track"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayer.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayer.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayerAudio.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayerAudio.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayerResponseInfo.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.tracks.HMSTrack.trackId","location":"lib/live.hms.video.media.tracks/-h-m-s-track/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.tracks.HMSTrack.trackId"]},{"name":"val trackId: String","description":"live.hms.video.sdk.models.HMSSpeaker.trackId","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.sdk.models.HMSSpeaker.trackId"]},{"name":"val tracks: ArrayList","description":"live.hms.video.media.streams.HMSMediaStream.tracks","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html","searchKeys":["tracks","val tracks: ArrayList","live.hms.video.media.streams.HMSMediaStream.tracks"]},{"name":"val transcript: String","description":"live.hms.video.sdk.transcripts.HmsTranscript.transcript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/transcript.html","searchKeys":["transcript","val transcript: String","live.hms.video.sdk.transcripts.HmsTranscript.transcript"]},{"name":"val transcriptions: List","description":"live.hms.video.sdk.models.HMSRoom.transcriptions","location":"lib/live.hms.video.sdk.models/-h-m-s-room/transcriptions.html","searchKeys":["transcriptions","val transcriptions: List","live.hms.video.sdk.models.HMSRoom.transcriptions"]},{"name":"val transcripts: List","description":"live.hms.video.sdk.transcripts.HmsTranscripts.transcripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/transcripts.html","searchKeys":["transcripts","val transcripts: List","live.hms.video.sdk.transcripts.HmsTranscripts.transcripts"]},{"name":"val trim: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.trim","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/trim.html","searchKeys":["trim","val trim: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestionOption.trim"]},{"name":"val type: HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioDeviceInfo.type","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/type.html","searchKeys":["type","val type: HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioDeviceInfo.type"]},{"name":"val type: HMSPeerType","description":"live.hms.video.sdk.models.HMSPeer.type","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/type.html","searchKeys":["type","val type: HMSPeerType","live.hms.video.sdk.models.HMSPeer.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.type","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.HMSPollQuestionBuilder.Builder.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.models.question.HMSPollQuestion.type","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.models.question.HMSPollQuestion.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.type","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.models.question.HmsPollQuestionCreation.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.network.PollResultsItems.type","location":"lib/live.hms.video.polls.network/-poll-results-items/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.network.PollResultsItems.type"]},{"name":"val type: Int","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.type","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/type.html","searchKeys":["type","val type: Int","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.type"]},{"name":"val type: String","description":"live.hms.video.sdk.models.HMSMessage.type","location":"lib/live.hms.video.sdk.models/-h-m-s-message/type.html","searchKeys":["type","val type: String","live.hms.video.sdk.models.HMSMessage.type"]},{"name":"val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.typography","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/typography.html","searchKeys":["typography","val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.typography"]},{"name":"val unmute: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.unmute","location":"lib/live.hms.video.sdk.models.role/-permissions-params/unmute.html","searchKeys":["unmute","val unmute: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.unmute"]},{"name":"val update: Boolean = false","description":"live.hms.video.polls.models.answer.HmsPollAnswer.update","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/update.html","searchKeys":["update","val update: Boolean = false","live.hms.video.polls.models.answer.HmsPollAnswer.update"]},{"name":"val updatedAt: Long?","description":"live.hms.video.sdk.models.HMSHLSVariant.updatedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/updated-at.html","searchKeys":["updatedAt","val updatedAt: Long?","live.hms.video.sdk.models.HMSHLSVariant.updatedAt"]},{"name":"val updatedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.updatedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/updated-at.html","searchKeys":["updatedAt","val updatedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.updatedAt"]},{"name":"val url: String","description":"live.hms.video.signal.init.NetworkHealth.url","location":"lib/live.hms.video.signal.init/-network-health/url.html","searchKeys":["url","val url: String","live.hms.video.signal.init.NetworkHealth.url"]},{"name":"val url: String","description":"live.hms.video.whiteboard.HMSWhiteboard.url","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/url.html","searchKeys":["url","val url: String","live.hms.video.whiteboard.HMSWhiteboard.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.url"]},{"name":"val useHardwareAcousticEchoCanceler: Boolean?","description":"live.hms.video.media.settings.HMSAudioTrackSettings.useHardwareAcousticEchoCanceler","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/use-hardware-acoustic-echo-canceler.html","searchKeys":["useHardwareAcousticEchoCanceler","val useHardwareAcousticEchoCanceler: Boolean?","live.hms.video.media.settings.HMSAudioTrackSettings.useHardwareAcousticEchoCanceler"]},{"name":"val userId: String?","description":"live.hms.video.polls.HMSPollResponseBuilder.userId","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/user-id.html","searchKeys":["userId","val userId: String?","live.hms.video.polls.HMSPollResponseBuilder.userId"]},{"name":"val userId: String?","description":"live.hms.video.signal.init.ShortCodeInput.userId","location":"lib/live.hms.video.signal.init/-short-code-input/user-id.html","searchKeys":["userId","val userId: String?","live.hms.video.signal.init.ShortCodeInput.userId"]},{"name":"val userId: String? = null","description":"live.hms.video.signal.init.TokenRequest.userId","location":"lib/live.hms.video.signal.init/-token-request/user-id.html","searchKeys":["userId","val userId: String? = null","live.hms.video.signal.init.TokenRequest.userId"]},{"name":"val userName: String","description":"live.hms.video.sdk.models.HMSConfig.userName","location":"lib/live.hms.video.sdk.models/-h-m-s-config/user-name.html","searchKeys":["userName","val userName: String","live.hms.video.sdk.models.HMSConfig.userName"]},{"name":"val userid: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.userid","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/userid.html","searchKeys":["userid","val userid: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.userid"]},{"name":"val username: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.username","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/username.html","searchKeys":["username","val username: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.username"]},{"name":"val variants: ArrayList?","description":"live.hms.video.sdk.models.HMSHLSStreamingState.variants","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/variants.html","searchKeys":["variants","val variants: ArrayList?","live.hms.video.sdk.models.HMSHLSStreamingState.variants"]},{"name":"val vb: VB?","description":"live.hms.video.signal.init.ServerConfiguration.vb","location":"lib/live.hms.video.signal.init/-server-configuration/vb.html","searchKeys":["vb","val vb: VB?","live.hms.video.signal.init.ServerConfiguration.vb"]},{"name":"val version: String","description":"live.hms.video.polls.models.answer.PollAnswerResponse.version","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.models.answer.PollAnswerResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollCreateResponse.version","location":"lib/live.hms.video.polls.network/-poll-create-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollCreateResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollGetResponsesReply.version","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollGetResponsesReply.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollQuestionGetResponse.version","location":"lib/live.hms.video.polls.network/-poll-question-get-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollQuestionGetResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollStartRequest.version","location":"lib/live.hms.video.polls.network/-poll-start-request/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollStartRequest.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.SetQuestionsResponse.version","location":"lib/live.hms.video.polls.network/-set-questions-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.SetQuestionsResponse.version"]},{"name":"val video: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.video","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/video.html","searchKeys":["video","val video: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.video"]},{"name":"val video: List","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.video","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/video.html","searchKeys":["video","val video: List","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.video"]},{"name":"val video: VideoParams?","description":"live.hms.video.sdk.models.role.PublishParams.video","location":"lib/live.hms.video.sdk.models.role/-publish-params/video.html","searchKeys":["video","val video: VideoParams?","live.hms.video.sdk.models.role.PublishParams.video"]},{"name":"val video: VideoSimulcastLayersParams?","description":"live.hms.video.sdk.models.role.Simulcast.video","location":"lib/live.hms.video.sdk.models.role/-simulcast/video.html","searchKeys":["video","val video: VideoSimulcastLayersParams?","live.hms.video.sdk.models.role.Simulcast.video"]},{"name":"val videoInputReport: VideoInputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.videoInputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/video-input-report.html","searchKeys":["videoInputReport","val videoInputReport: VideoInputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.videoInputReport"]},{"name":"val videoOnDemand: Boolean","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.videoOnDemand","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/video-on-demand.html","searchKeys":["videoOnDemand","val videoOnDemand: Boolean","live.hms.video.sdk.models.HMSHlsRecordingConfig.videoOnDemand"]},{"name":"val videoSamples: List","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.videoSamples","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/video-samples.html","searchKeys":["videoSamples","val videoSamples: List","live.hms.video.connection.stats.clientside.model.VideoAnalytics.videoSamples"]},{"name":"val videoSettings: HMSVideoTrackSettings?","description":"live.hms.video.media.settings.HMSTrackSettings.videoSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/video-settings.html","searchKeys":["videoSettings","val videoSettings: HMSVideoTrackSettings?","live.hms.video.media.settings.HMSTrackSettings.videoSettings"]},{"name":"val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.videoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/video-tile-layout.html","searchKeys":["videoTileLayout","val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.videoTileLayout"]},{"name":"val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.virtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/virtual-background.html","searchKeys":["virtualBackground","val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.virtualBackground"]},{"name":"val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.virtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/virtual-background.html","searchKeys":["virtualBackground","val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.virtualBackground"]},{"name":"val visibility: Boolean = true","description":"live.hms.video.polls.models.HmsPollCreationParams.visibility","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/visibility.html","searchKeys":["visibility","val visibility: Boolean = true","live.hms.video.polls.models.HmsPollCreationParams.visibility"]},{"name":"val volume: Double","description":"live.hms.video.media.settings.HMSAudioTrackSettings.volume","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/volume.html","searchKeys":["volume","val volume: Double","live.hms.video.media.settings.HMSAudioTrackSettings.volume"]},{"name":"val vote: List? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.vote","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/vote.html","searchKeys":["vote","val vote: List? = null","live.hms.video.polls.models.HmsPollCreationParams.vote"]},{"name":"val voted: Boolean","description":"live.hms.video.polls.models.question.HMSPollQuestion.voted","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/voted.html","searchKeys":["voted","val voted: Boolean","live.hms.video.polls.models.question.HMSPollQuestion.voted"]},{"name":"val votedUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.votedUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/voted-users.html","searchKeys":["votedUsers","val votedUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.votedUsers"]},{"name":"val votingUsers: Long","description":"live.hms.video.polls.network.PollResultsResponse.votingUsers","location":"lib/live.hms.video.polls.network/-poll-results-response/voting-users.html","searchKeys":["votingUsers","val votingUsers: Long","live.hms.video.polls.network.PollResultsResponse.votingUsers"]},{"name":"val votingUsers: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.votingUsers","location":"lib/live.hms.video.polls.network/-poll-results-display/voting-users.html","searchKeys":["votingUsers","val votingUsers: Long? = null","live.hms.video.polls.network.PollResultsDisplay.votingUsers"]},{"name":"val weight: Int = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.weight","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/weight.html","searchKeys":["weight","val weight: Int = 0","live.hms.video.polls.models.question.HMSPollQuestion.weight"]},{"name":"val weight: Int = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.weight","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/weight.html","searchKeys":["weight","val weight: Int = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.weight"]},{"name":"val weight: Int? = null","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.weight","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/weight.html","searchKeys":["weight","val weight: Int? = null","live.hms.video.polls.models.question.HMSPollQuestionOption.weight"]},{"name":"val whiteboard: HMSWhiteBoardPermission","description":"live.hms.video.sdk.models.role.PermissionsParams.whiteboard","location":"lib/live.hms.video.sdk.models.role/-permissions-params/whiteboard.html","searchKeys":["whiteboard","val whiteboard: HMSWhiteBoardPermission","live.hms.video.sdk.models.role.PermissionsParams.whiteboard"]},{"name":"val width: Int","description":"live.hms.video.connection.stats.clientside.model.Size.width","location":"lib/live.hms.video.connection.stats.clientside.model/-size/width.html","searchKeys":["width","val width: Int","live.hms.video.connection.stats.clientside.model.Size.width"]},{"name":"val width: Int","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.width","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/width.html","searchKeys":["width","val width: Int","live.hms.video.media.settings.HMSRtmpVideoResolution.width"]},{"name":"val width: Int","description":"live.hms.video.sdk.models.role.VideoParams.width","location":"lib/live.hms.video.sdk.models.role/-video-params/width.html","searchKeys":["width","val width: Int","live.hms.video.sdk.models.role.VideoParams.width"]},{"name":"val writer: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.writer","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/writer.html","searchKeys":["writer","val writer: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.writer"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.MIN_API_LEVEL","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.MIN_API_LEVEL"]},{"name":"var START_AUDIO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.START_AUDIO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-s-t-a-r-t_-a-u-d-i-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_AUDIO_SAMPLE_DURATION","var START_AUDIO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.START_AUDIO_SAMPLE_DURATION"]},{"name":"var START_AUDIO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.START_AUDIO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-s-t-a-r-t_-a-u-d-i-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_AUDIO_SAMPLE_DURATION","var START_AUDIO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.START_AUDIO_SAMPLE_DURATION"]},{"name":"var START_VIDEO_SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.START_VIDEO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-s-t-a-r-t_-v-i-d-e-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_VIDEO_SAMPLE_DURATION","var START_VIDEO_SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.START_VIDEO_SAMPLE_DURATION"]},{"name":"var START_VIDEO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.START_VIDEO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-s-t-a-r-t_-v-i-d-e-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_VIDEO_SAMPLE_DURATION","var START_VIDEO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.START_VIDEO_SAMPLE_DURATION"]},{"name":"var admin: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.admin","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/admin.html","searchKeys":["admin","var admin: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.admin"]},{"name":"var admin: Boolean = false","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.admin","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/admin.html","searchKeys":["admin","var admin: Boolean = false","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.admin"]},{"name":"var analyticsPeer: AnalyticsPeer","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.analyticsPeer","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/analytics-peer.html","searchKeys":["analyticsPeer","var analyticsPeer: AnalyticsPeer","live.hms.video.sdk.OfflineAnalyticsPeerInfo.analyticsPeer"]},{"name":"var audioConcealedSamples: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-concealed-samples.html","searchKeys":["audioConcealedSamples","var audioConcealedSamples: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealedSamples"]},{"name":"var audioConcealmentEvents: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealmentEvents","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-concealment-events.html","searchKeys":["audioConcealmentEvents","var audioConcealmentEvents: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealmentEvents"]},{"name":"var audioTotalSampleReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioTotalSampleReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-total-sample-received.html","searchKeys":["audioTotalSampleReceived","var audioTotalSampleReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioTotalSampleReceived"]},{"name":"var auxiliaryTracks: MutableList","description":"live.hms.video.sdk.models.HMSPeer.auxiliaryTracks","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/auxiliary-tracks.html","searchKeys":["auxiliaryTracks","var auxiliaryTracks: MutableList","live.hms.video.sdk.models.HMSPeer.auxiliaryTracks"]},{"name":"var avSyncMsAvg: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.avSyncMsAvg","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/av-sync-ms-avg.html","searchKeys":["avSyncMsAvg","var avSyncMsAvg: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.avSyncMsAvg"]},{"name":"var availableIncomingBitrate: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.availableIncomingBitrate","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/available-incoming-bitrate.html","searchKeys":["availableIncomingBitrate","var availableIncomingBitrate: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.availableIncomingBitrate"]},{"name":"var availableIncomingBitrates: MutableList","description":"live.hms.video.sdk.SubscribeConnection.availableIncomingBitrates","location":"lib/live.hms.video.sdk/-subscribe-connection/available-incoming-bitrates.html","searchKeys":["availableIncomingBitrates","var availableIncomingBitrates: MutableList","live.hms.video.sdk.SubscribeConnection.availableIncomingBitrates"]},{"name":"var availableOutgoingBitrate: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.availableOutgoingBitrate","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/available-outgoing-bitrate.html","searchKeys":["availableOutgoingBitrate","var availableOutgoingBitrate: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.availableOutgoingBitrate"]},{"name":"var availableOutgoingBitrates: MutableList","description":"live.hms.video.sdk.PublishConnection.availableOutgoingBitrates","location":"lib/live.hms.video.sdk/-publish-connection/available-outgoing-bitrates.html","searchKeys":["availableOutgoingBitrates","var availableOutgoingBitrates: MutableList","live.hms.video.sdk.PublishConnection.availableOutgoingBitrates"]},{"name":"var browserRecordingState: HMSBrowserRecordingState","description":"live.hms.video.sdk.models.HMSRoom.browserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/browser-recording-state.html","searchKeys":["browserRecordingState","var browserRecordingState: HMSBrowserRecordingState","live.hms.video.sdk.models.HMSRoom.browserRecordingState"]},{"name":"var bytesReceived: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.bytesReceived","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/bytes-received.html","searchKeys":["bytesReceived","var bytesReceived: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.bytesReceived"]},{"name":"var bytesReceived: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.bytesReceived","location":"lib/live.hms.video.sdk/-subscribe-connection/bytes-received.html","searchKeys":["bytesReceived","var bytesReceived: Long = 0","live.hms.video.sdk.SubscribeConnection.bytesReceived"]},{"name":"var bytesSent: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.bytesSent","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/bytes-sent.html","searchKeys":["bytesSent","var bytesSent: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.bytesSent"]},{"name":"var bytesSent: Long = 0","description":"live.hms.video.sdk.PublishConnection.bytesSent","location":"lib/live.hms.video.sdk/-publish-connection/bytes-sent.html","searchKeys":["bytesSent","var bytesSent: Long = 0","live.hms.video.sdk.PublishConnection.bytesSent"]},{"name":"var cameraFacing: HMSVideoTrackSettings.CameraFacing","description":"live.hms.video.media.settings.HMSVideoTrackSettings.cameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/camera-facing.html","searchKeys":["cameraFacing","var cameraFacing: HMSVideoTrackSettings.CameraFacing","live.hms.video.media.settings.HMSVideoTrackSettings.cameraFacing"]},{"name":"var captureFormat: CameraEnumerationAndroid.CaptureFormat? = null","description":"live.hms.video.media.capturers.camera.CameraControl.captureFormat","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-format.html","searchKeys":["captureFormat","var captureFormat: CameraEnumerationAndroid.CaptureFormat? = null","live.hms.video.media.capturers.camera.CameraControl.captureFormat"]},{"name":"var captureNetworkQualityInPreview: Boolean = false","description":"live.hms.video.sdk.models.HMSConfig.captureNetworkQualityInPreview","location":"lib/live.hms.video.sdk.models/-h-m-s-config/capture-network-quality-in-preview.html","searchKeys":["captureNetworkQualityInPreview","var captureNetworkQualityInPreview: Boolean = false","live.hms.video.sdk.models.HMSConfig.captureNetworkQualityInPreview"]},{"name":"var captureRequestBuilder: CaptureRequest.Builder? = null","description":"live.hms.video.media.capturers.camera.CameraControl.captureRequestBuilder","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-request-builder.html","searchKeys":["captureRequestBuilder","var captureRequestBuilder: CaptureRequest.Builder? = null","live.hms.video.media.capturers.camera.CameraControl.captureRequestBuilder"]},{"name":"var codec: HMSAudioCodec","description":"live.hms.video.media.settings.HMSAudioTrackSettings.codec","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/codec.html","searchKeys":["codec","var codec: HMSAudioCodec","live.hms.video.media.settings.HMSAudioTrackSettings.codec"]},{"name":"var codec: HMSVideoCodec","description":"live.hms.video.media.settings.HMSVideoTrackSettings.codec","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/codec.html","searchKeys":["codec","var codec: HMSVideoCodec","live.hms.video.media.settings.HMSVideoTrackSettings.codec"]},{"name":"var connectionQualityScore: Float? = null","description":"live.hms.video.diagnostics.models.MediaServerReport.connectionQualityScore","location":"lib/live.hms.video.diagnostics.models/-media-server-report/connection-quality-score.html","searchKeys":["connectionQualityScore","var connectionQualityScore: Float? = null","live.hms.video.diagnostics.models.MediaServerReport.connectionQualityScore"]},{"name":"var connectivityState: ConnectivityState","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.connectivityState","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/connectivity-state.html","searchKeys":["connectivityState","var connectivityState: ConnectivityState","live.hms.video.diagnostics.models.ConnectivityCheckResult.connectivityState"]},{"name":"var currentCameraSession: CameraCaptureSession? = null","description":"live.hms.video.media.capturers.camera.CameraControl.currentCameraSession","location":"lib/live.hms.video.media.capturers.camera/-camera-control/current-camera-session.html","searchKeys":["currentCameraSession","var currentCameraSession: CameraCaptureSession? = null","live.hms.video.media.capturers.camera.CameraControl.currentCameraSession"]},{"name":"var currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/current-round-trip-time.html","searchKeys":["currentRoundTripTime","var currentRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.currentRoundTripTime"]},{"name":"var currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/current-round-trip-time.html","searchKeys":["currentRoundTripTime","var currentRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.currentRoundTripTime"]},{"name":"var currentSessionFile: File? = null","description":"live.hms.video.utils.LogUtils.currentSessionFile","location":"lib/live.hms.video.utils/-log-utils/current-session-file.html","searchKeys":["currentSessionFile","var currentSessionFile: File? = null","live.hms.video.utils.LogUtils.currentSessionFile"]},{"name":"var currentSessionFileWriter: FileWriter? = null","description":"live.hms.video.utils.LogUtils.currentSessionFileWriter","location":"lib/live.hms.video.utils/-log-utils/current-session-file-writer.html","searchKeys":["currentSessionFileWriter","var currentSessionFileWriter: FileWriter? = null","live.hms.video.utils.LogUtils.currentSessionFileWriter"]},{"name":"var currentWhiteBoardState: State","description":"live.hms.video.interactivity.HmsInteractivityCenter.currentWhiteBoardState","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/current-white-board-state.html","searchKeys":["currentWhiteBoardState","var currentWhiteBoardState: State","live.hms.video.interactivity.HmsInteractivityCenter.currentWhiteBoardState"]},{"name":"var description: String","description":"live.hms.video.error.HMSException.description","location":"lib/live.hms.video.error/-h-m-s-exception/description.html","searchKeys":["description","var description: String","live.hms.video.error.HMSException.description"]},{"name":"var description: String","description":"live.hms.video.media.tracks.HMSTrack.description","location":"lib/live.hms.video.media.tracks/-h-m-s-track/description.html","searchKeys":["description","var description: String","live.hms.video.media.tracks.HMSTrack.description"]},{"name":"var duration: Long?","description":"live.hms.video.polls.models.HmsPoll.duration","location":"lib/live.hms.video.polls.models/-hms-poll/duration.html","searchKeys":["duration","var duration: Long?","live.hms.video.polls.models.HmsPoll.duration"]},{"name":"var error: OnTranscriptionError? = null","description":"live.hms.video.sdk.models.Transcriptions.error","location":"lib/live.hms.video.sdk.models/-transcriptions/error.html","searchKeys":["error","var error: OnTranscriptionError? = null","live.hms.video.sdk.models.Transcriptions.error"]},{"name":"var fecPacketDiscarded: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketDiscarded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/fec-packet-discarded.html","searchKeys":["fecPacketDiscarded","var fecPacketDiscarded: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketDiscarded"]},{"name":"var fecPacketReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/fec-packet-received.html","searchKeys":["fecPacketReceived","var fecPacketReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketReceived"]},{"name":"var framesDecoded: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDecoded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-decoded.html","searchKeys":["framesDecoded","var framesDecoded: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDecoded"]},{"name":"var framesDropped: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDropped","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-dropped.html","searchKeys":["framesDropped","var framesDropped: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDropped"]},{"name":"var framesReceived: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-received.html","searchKeys":["framesReceived","var framesReceived: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesReceived"]},{"name":"var freezeCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.freezeCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/freeze-count.html","searchKeys":["freezeCount","var freezeCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.freezeCount"]},{"name":"var height: Int","description":"live.hms.video.media.settings.HMSVideoResolution.height","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/height.html","searchKeys":["height","var height: Int","live.hms.video.media.settings.HMSVideoResolution.height"]},{"name":"var hlsRecordingState: HmsHlsRecordingState","description":"live.hms.video.sdk.models.HMSRoom.hlsRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/hls-recording-state.html","searchKeys":["hlsRecordingState","var hlsRecordingState: HmsHlsRecordingState","live.hms.video.sdk.models.HMSRoom.hlsRecordingState"]},{"name":"var hlsStreamingState: HMSHLSStreamingState","description":"live.hms.video.sdk.models.HMSRoom.hlsStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/hls-streaming-state.html","searchKeys":["hlsStreamingState","var hlsStreamingState: HMSHLSStreamingState","live.hms.video.sdk.models.HMSRoom.hlsStreamingState"]},{"name":"var hmsRole: HMSRole","description":"live.hms.video.sdk.models.HMSPeer.hmsRole","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/hms-role.html","searchKeys":["hmsRole","var hmsRole: HMSRole","live.hms.video.sdk.models.HMSPeer.hmsRole"]},{"name":"var imageReader: ImageReader? = null","description":"live.hms.video.media.capturers.camera.CameraControl.imageReader","location":"lib/live.hms.video.media.capturers.camera/-camera-control/image-reader.html","searchKeys":["imageReader","var imageReader: ImageReader? = null","live.hms.video.media.capturers.camera.CameraControl.imageReader"]},{"name":"var initialisedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.initialisedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/initialised-at.html","searchKeys":["initialisedAt","var initialisedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.initialisedAt"]},{"name":"var isConnected: Boolean = false","description":"live.hms.video.diagnostics.models.SignallingReport.isConnected","location":"lib/live.hms.video.diagnostics.models/-signalling-report/is-connected.html","searchKeys":["isConnected","var isConnected: Boolean = false","live.hms.video.diagnostics.models.SignallingReport.isConnected"]},{"name":"var isHandRaised: Boolean = false","description":"live.hms.video.sdk.models.HMSPeer.isHandRaised","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/is-hand-raised.html","searchKeys":["isHandRaised","var isHandRaised: Boolean = false","live.hms.video.sdk.models.HMSPeer.isHandRaised"]},{"name":"var isInitConnected: Boolean = false","description":"live.hms.video.diagnostics.models.SignallingReport.isInitConnected","location":"lib/live.hms.video.diagnostics.models/-signalling-report/is-init-connected.html","searchKeys":["isInitConnected","var isInitConnected: Boolean = false","live.hms.video.diagnostics.models.SignallingReport.isInitConnected"]},{"name":"var isLargeRoom: Boolean = false","description":"live.hms.video.sdk.models.HMSRoom.isLargeRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-room/is-large-room.html","searchKeys":["isLargeRoom","var isLargeRoom: Boolean = false","live.hms.video.sdk.models.HMSRoom.isLargeRoom"]},{"name":"var isMute: Boolean = false","description":"live.hms.video.media.tracks.HMSTrack.isMute","location":"lib/live.hms.video.media.tracks/-h-m-s-track/is-mute.html","searchKeys":["isMute","var isMute: Boolean = false","live.hms.video.media.tracks.HMSTrack.isMute"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.AudioInputDeviceReport.isPassed"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.AudioOutputDeviceReport.isPassed"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.VideoInputDeviceReport.isPassed"]},{"name":"var isPublishICEConnected: Boolean = false","description":"live.hms.video.diagnostics.models.MediaServerReport.isPublishICEConnected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/is-publish-i-c-e-connected.html","searchKeys":["isPublishICEConnected","var isPublishICEConnected: Boolean = false","live.hms.video.diagnostics.models.MediaServerReport.isPublishICEConnected"]},{"name":"var isSubcribeICEConnected: Boolean = false","description":"live.hms.video.diagnostics.models.MediaServerReport.isSubcribeICEConnected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/is-subcribe-i-c-e-connected.html","searchKeys":["isSubcribeICEConnected","var isSubcribeICEConnected: Boolean = false","live.hms.video.diagnostics.models.MediaServerReport.isSubcribeICEConnected"]},{"name":"var isTerminal: Boolean = true","description":"live.hms.video.error.HMSException.isTerminal","location":"lib/live.hms.video.error/-h-m-s-exception/is-terminal.html","searchKeys":["isTerminal","var isTerminal: Boolean = true","live.hms.video.error.HMSException.isTerminal"]},{"name":"var joinedAt: Long","description":"live.hms.video.sdk.models.HMSPeer.joinedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/joined-at.html","searchKeys":["joinedAt","var joinedAt: Long","live.hms.video.sdk.models.HMSPeer.joinedAt"]},{"name":"var joinedAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.joinedAt","location":"lib/live.hms.video.database.entity/-analytics-peer/joined-at.html","searchKeys":["joinedAt","var joinedAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.joinedAt"]},{"name":"var lastFramesDecoded: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDecoded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-decoded.html","searchKeys":["lastFramesDecoded","var lastFramesDecoded: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDecoded"]},{"name":"var lastFramesDropped: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDropped","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-dropped.html","searchKeys":["lastFramesDropped","var lastFramesDropped: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDropped"]},{"name":"var lastFramesReceived: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-received.html","searchKeys":["lastFramesReceived","var lastFramesReceived: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesReceived"]},{"name":"var lastSample: AudioSamplesSubscribe? = null","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.lastSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/last-sample.html","searchKeys":["lastSample","var lastSample: AudioSamplesSubscribe? = null","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.lastSample"]},{"name":"var lastSample: VideoSamplesSubscribe? = null","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-sample.html","searchKeys":["lastSample","var lastSample: VideoSamplesSubscribe? = null","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastSample"]},{"name":"var leftAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.leftAt","location":"lib/live.hms.video.database.entity/-analytics-peer/left-at.html","searchKeys":["leftAt","var leftAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.leftAt"]},{"name":"var level: HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.level","location":"lib/live.hms.video.utils/-h-m-s-logger/level.html","searchKeys":["level","var level: HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.level"]},{"name":"var limit: Int = 10","description":"live.hms.video.sdk.models.PeerListIterator.limit","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/limit.html","searchKeys":["limit","var limit: Int = 10","live.hms.video.sdk.models.PeerListIterator.limit"]},{"name":"var local: IceCandidate? = null","description":"live.hms.video.diagnostics.models.IceCandidatePair.local","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/local.html","searchKeys":["local","var local: IceCandidate? = null","live.hms.video.diagnostics.models.IceCandidatePair.local"]},{"name":"var maxBitRate: Int","description":"live.hms.video.media.settings.HMSVideoTrackSettings.maxBitRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/max-bit-rate.html","searchKeys":["maxBitRate","var maxBitRate: Int","live.hms.video.media.settings.HMSVideoTrackSettings.maxBitRate"]},{"name":"var maxBitrate: Int","description":"live.hms.video.media.settings.HMSAudioTrackSettings.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/max-bitrate.html","searchKeys":["maxBitrate","var maxBitrate: Int","live.hms.video.media.settings.HMSAudioTrackSettings.maxBitrate"]},{"name":"var maxFrameRate: Int = 24","description":"live.hms.video.media.settings.HMSVideoTrackSettings.maxFrameRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/max-frame-rate.html","searchKeys":["maxFrameRate","var maxFrameRate: Int = 24","live.hms.video.media.settings.HMSVideoTrackSettings.maxFrameRate"]},{"name":"var metadata: String","description":"live.hms.video.sdk.models.HMSConfig.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-config/metadata.html","searchKeys":["metadata","var metadata: String","live.hms.video.sdk.models.HMSConfig.metadata"]},{"name":"var metadata: String","description":"live.hms.video.sdk.models.HMSPeer.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/metadata.html","searchKeys":["metadata","var metadata: String","live.hms.video.sdk.models.HMSPeer.metadata"]},{"name":"var mode: TranscriptionsMode? = null","description":"live.hms.video.sdk.models.Transcriptions.mode","location":"lib/live.hms.video.sdk.models/-transcriptions/mode.html","searchKeys":["mode","var mode: TranscriptionsMode? = null","live.hms.video.sdk.models.Transcriptions.mode"]},{"name":"var mode: TranscriptionsMode? = null","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.mode","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/mode.html","searchKeys":["mode","var mode: TranscriptionsMode? = null","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.mode"]},{"name":"var nackCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.nackCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/nack-count.html","searchKeys":["nackCount","var nackCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.nackCount"]},{"name":"var name: String","description":"live.hms.video.sdk.models.HMSPeer.name","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/name.html","searchKeys":["name","var name: String","live.hms.video.sdk.models.HMSPeer.name"]},{"name":"var name: String","description":"live.hms.video.sdk.models.HMSRoom.name","location":"lib/live.hms.video.sdk.models/-h-m-s-room/name.html","searchKeys":["name","var name: String","live.hms.video.sdk.models.HMSRoom.name"]},{"name":"var networkQuality: HMSNetworkQuality? = null","description":"live.hms.video.sdk.models.HMSPeer.networkQuality","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/network-quality.html","searchKeys":["networkQuality","var networkQuality: HMSNetworkQuality? = null","live.hms.video.sdk.models.HMSPeer.networkQuality"]},{"name":"var options: MutableList>","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.options","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/options.html","searchKeys":["options","var options: MutableList>","live.hms.video.polls.HMSPollQuestionBuilder.Builder.options"]},{"name":"var packetLoss: Long = 0","description":"live.hms.video.sdk.PublishConnection.packetLoss","location":"lib/live.hms.video.sdk/-publish-connection/packet-loss.html","searchKeys":["packetLoss","var packetLoss: Long = 0","live.hms.video.sdk.PublishConnection.packetLoss"]},{"name":"var packetLoss: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.packetLoss","location":"lib/live.hms.video.sdk/-subscribe-connection/packet-loss.html","searchKeys":["packetLoss","var packetLoss: Long = 0","live.hms.video.sdk.SubscribeConnection.packetLoss"]},{"name":"var packetsReceived: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.packetsReceived","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/packets-received.html","searchKeys":["packetsReceived","var packetsReceived: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.packetsReceived"]},{"name":"var packetsReceived: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.packetsReceived","location":"lib/live.hms.video.sdk/-subscribe-connection/packets-received.html","searchKeys":["packetsReceived","var packetsReceived: Long = 0","live.hms.video.sdk.SubscribeConnection.packetsReceived"]},{"name":"var packetsSent: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.packetsSent","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/packets-sent.html","searchKeys":["packetsSent","var packetsSent: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.packetsSent"]},{"name":"var packetsSent: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.packetsSent","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/packets-sent.html","searchKeys":["packetsSent","var packetsSent: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.packetsSent"]},{"name":"var packetsSent: Long = 0","description":"live.hms.video.sdk.PublishConnection.packetsSent","location":"lib/live.hms.video.sdk/-publish-connection/packets-sent.html","searchKeys":["packetsSent","var packetsSent: Long = 0","live.hms.video.sdk.PublishConnection.packetsSent"]},{"name":"var pauseCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.pauseCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/pause-count.html","searchKeys":["pauseCount","var pauseCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.pauseCount"]},{"name":"var peerCount: Int? = null","description":"live.hms.video.sdk.models.HMSRoom.peerCount","location":"lib/live.hms.video.sdk.models/-h-m-s-room/peer-count.html","searchKeys":["peerCount","var peerCount: Int? = null","live.hms.video.sdk.models.HMSRoom.peerCount"]},{"name":"var peerId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.peerId","location":"lib/live.hms.video.database.entity/-analytics-peer/peer-id.html","searchKeys":["peerId","var peerId: String? = null","live.hms.video.database.entity.AnalyticsPeer.peerId"]},{"name":"var plicount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.plicount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/plicount.html","searchKeys":["plicount","var plicount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.plicount"]},{"name":"var pollUpdateListener: HmsPollUpdateListener? = null","description":"live.hms.video.interactivity.HmsInteractivityCenter.pollUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/poll-update-listener.html","searchKeys":["pollUpdateListener","var pollUpdateListener: HmsPollUpdateListener? = null","live.hms.video.interactivity.HmsInteractivityCenter.pollUpdateListener"]},{"name":"var publishICECandidatePairSelected: IceCandidatePair","description":"live.hms.video.diagnostics.models.MediaServerReport.publishICECandidatePairSelected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/publish-i-c-e-candidate-pair-selected.html","searchKeys":["publishICECandidatePairSelected","var publishICECandidatePairSelected: IceCandidatePair","live.hms.video.diagnostics.models.MediaServerReport.publishICECandidatePairSelected"]},{"name":"var publishParams: PublishParams?","description":"live.hms.video.sdk.models.role.HMSRole.publishParams","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/publish-params.html","searchKeys":["publishParams","var publishParams: PublishParams?","live.hms.video.sdk.models.role.HMSRole.publishParams"]},{"name":"var qualityReasons: QualityLimitationReasons? = null","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.qualityReasons","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/quality-reasons.html","searchKeys":["qualityReasons","var qualityReasons: QualityLimitationReasons? = null","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.qualityReasons"]},{"name":"var questionId: Int = 1","description":"live.hms.video.polls.HMSPollBuilder.Builder.questionId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/question-id.html","searchKeys":["questionId","var questionId: Int = 1","live.hms.video.polls.HMSPollBuilder.Builder.questionId"]},{"name":"var questions: List?","description":"live.hms.video.polls.models.HmsPoll.questions","location":"lib/live.hms.video.polls.models/-hms-poll/questions.html","searchKeys":["questions","var questions: List?","live.hms.video.polls.models.HmsPoll.questions"]},{"name":"var read: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.read","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/read.html","searchKeys":["read","var read: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.read"]},{"name":"var read: Boolean = false","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.read","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/read.html","searchKeys":["read","var read: Boolean = false","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.read"]},{"name":"var recipientPeer: HMSPeer? = null","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-peer.html","searchKeys":["recipientPeer","var recipientPeer: HMSPeer? = null","live.hms.video.sdk.models.HMSMessageRecipient.recipientPeer"]},{"name":"var recipientRoles: List","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientRoles","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-roles.html","searchKeys":["recipientRoles","var recipientRoles: List","live.hms.video.sdk.models.HMSMessageRecipient.recipientRoles"]},{"name":"var recipientType: HMSMessageRecipientType","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientType","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-type.html","searchKeys":["recipientType","var recipientType: HMSMessageRecipientType","live.hms.video.sdk.models.HMSMessageRecipient.recipientType"]},{"name":"var remote: IceCandidate? = null","description":"live.hms.video.diagnostics.models.IceCandidatePair.remote","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/remote.html","searchKeys":["remote","var remote: IceCandidate? = null","live.hms.video.diagnostics.models.IceCandidatePair.remote"]},{"name":"var resolution: HMSVideoResolution","description":"live.hms.video.media.settings.HMSVideoTrackSettings.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/resolution.html","searchKeys":["resolution","var resolution: HMSVideoResolution","live.hms.video.media.settings.HMSVideoTrackSettings.resolution"]},{"name":"var result: PollResultsDisplay? = null","description":"live.hms.video.polls.models.HmsPoll.result","location":"lib/live.hms.video.polls.models/-hms-poll/result.html","searchKeys":["result","var result: PollResultsDisplay? = null","live.hms.video.polls.models.HmsPoll.result"]},{"name":"var role: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.role","location":"lib/live.hms.video.database.entity/-analytics-peer/role.html","searchKeys":["role","var role: String? = null","live.hms.video.database.entity.AnalyticsPeer.role"]},{"name":"var roomId: String","description":"live.hms.video.sdk.models.HMSRoom.roomId","location":"lib/live.hms.video.sdk.models/-h-m-s-room/room-id.html","searchKeys":["roomId","var roomId: String","live.hms.video.sdk.models.HMSRoom.roomId"]},{"name":"var roomName: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.roomName","location":"lib/live.hms.video.database.entity/-analytics-peer/room-name.html","searchKeys":["roomName","var roomName: String? = null","live.hms.video.database.entity.AnalyticsPeer.roomName"]},{"name":"var rtmpHMSRtmpStreamingState: HMSRtmpStreamingState","description":"live.hms.video.sdk.models.HMSRoom.rtmpHMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/rtmp-h-m-s-rtmp-streaming-state.html","searchKeys":["rtmpHMSRtmpStreamingState","var rtmpHMSRtmpStreamingState: HMSRtmpStreamingState","live.hms.video.sdk.models.HMSRoom.rtmpHMSRtmpStreamingState"]},{"name":"var sender: HMSPeer?","description":"live.hms.video.sdk.models.HMSMessage.sender","location":"lib/live.hms.video.sdk.models/-h-m-s-message/sender.html","searchKeys":["sender","var sender: HMSPeer?","live.hms.video.sdk.models.HMSMessage.sender"]},{"name":"var serverReceiveTime: Long","description":"live.hms.video.sdk.models.HMSMessage.serverReceiveTime","location":"lib/live.hms.video.sdk.models/-h-m-s-message/server-receive-time.html","searchKeys":["serverReceiveTime","var serverReceiveTime: Long","live.hms.video.sdk.models.HMSMessage.serverReceiveTime"]},{"name":"var serverRecordingState: HMSServerRecordingState","description":"live.hms.video.sdk.models.HMSRoom.serverRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/server-recording-state.html","searchKeys":["serverRecordingState","var serverRecordingState: HMSServerRecordingState","live.hms.video.sdk.models.HMSRoom.serverRecordingState"]},{"name":"var sessionId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.sessionId","location":"lib/live.hms.video.database.entity/-analytics-peer/session-id.html","searchKeys":["sessionId","var sessionId: String? = null","live.hms.video.database.entity.AnalyticsPeer.sessionId"]},{"name":"var sessionId: String? = null","description":"live.hms.video.sdk.models.HMSRoom.sessionId","location":"lib/live.hms.video.sdk.models/-h-m-s-room/session-id.html","searchKeys":["sessionId","var sessionId: String? = null","live.hms.video.sdk.models.HMSRoom.sessionId"]},{"name":"var sessionStartedAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.sessionStartedAt","location":"lib/live.hms.video.database.entity/-analytics-peer/session-started-at.html","searchKeys":["sessionStartedAt","var sessionStartedAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.sessionStartedAt"]},{"name":"var settings: HMSAudioTrackSettings","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.settings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/settings.html","searchKeys":["settings","var settings: HMSAudioTrackSettings","live.hms.video.media.tracks.HMSLocalAudioTrack.settings"]},{"name":"var settings: HMSVideoTrackSettings","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.settings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/settings.html","searchKeys":["settings","var settings: HMSVideoTrackSettings","live.hms.video.media.tracks.HMSLocalVideoTrack.settings"]},{"name":"var source: String","description":"live.hms.video.media.tracks.HMSTrack.source","location":"lib/live.hms.video.media.tracks/-h-m-s-track/source.html","searchKeys":["source","var source: String","live.hms.video.media.tracks.HMSTrack.source"]},{"name":"var startedAt: Long? = null","description":"live.hms.video.sdk.models.HMSRoom.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-room/started-at.html","searchKeys":["startedAt","var startedAt: Long? = null","live.hms.video.sdk.models.HMSRoom.startedAt"]},{"name":"var startedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.startedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/started-at.html","searchKeys":["startedAt","var startedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.startedAt"]},{"name":"var state: HMSStreamingState","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/state.html","searchKeys":["state","var state: HMSStreamingState","live.hms.video.sdk.models.HMSRtmpStreamingState.state"]},{"name":"var state: TranscriptionState? = null","description":"live.hms.video.sdk.models.Transcriptions.state","location":"lib/live.hms.video.sdk.models/-transcriptions/state.html","searchKeys":["state","var state: TranscriptionState? = null","live.hms.video.sdk.models.Transcriptions.state"]},{"name":"var stats: HMSRTCStatsReport? = null","description":"live.hms.video.diagnostics.models.MediaServerReport.stats","location":"lib/live.hms.video.diagnostics.models/-media-server-report/stats.html","searchKeys":["stats","var stats: HMSRTCStatsReport? = null","live.hms.video.diagnostics.models.MediaServerReport.stats"]},{"name":"var stoppedAt: Long? = null","description":"live.hms.video.polls.models.HmsPoll.stoppedAt","location":"lib/live.hms.video.polls.models/-hms-poll/stopped-at.html","searchKeys":["stoppedAt","var stoppedAt: Long? = null","live.hms.video.polls.models.HmsPoll.stoppedAt"]},{"name":"var stoppedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.stoppedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/stopped-at.html","searchKeys":["stoppedAt","var stoppedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.stoppedAt"]},{"name":"var subscribeICECandidatePairSelected: IceCandidatePair","description":"live.hms.video.diagnostics.models.MediaServerReport.subscribeICECandidatePairSelected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/subscribe-i-c-e-candidate-pair-selected.html","searchKeys":["subscribeICECandidatePairSelected","var subscribeICECandidatePairSelected: IceCandidatePair","live.hms.video.diagnostics.models.MediaServerReport.subscribeICECandidatePairSelected"]},{"name":"var templateId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.templateId","location":"lib/live.hms.video.database.entity/-analytics-peer/template-id.html","searchKeys":["templateId","var templateId: String? = null","live.hms.video.database.entity.AnalyticsPeer.templateId"]},{"name":"var testTimestamp: Long? = null","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.testTimestamp","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/test-timestamp.html","searchKeys":["testTimestamp","var testTimestamp: Long? = null","live.hms.video.diagnostics.models.ConnectivityCheckResult.testTimestamp"]},{"name":"var textures: IntArray","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.textures","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.textures"]},{"name":"var timeTakenWithML: Long = 0","description":"live.hms.video.sdk.ProcessTimeVariables.timeTakenWithML","location":"lib/live.hms.video.sdk/-process-time-variables/time-taken-with-m-l.html","searchKeys":["timeTakenWithML","var timeTakenWithML: Long = 0","live.hms.video.sdk.ProcessTimeVariables.timeTakenWithML"]},{"name":"var timeTakenWithoutML: Long = 0","description":"live.hms.video.sdk.ProcessTimeVariables.timeTakenWithoutML","location":"lib/live.hms.video.sdk/-process-time-variables/time-taken-without-m-l.html","searchKeys":["timeTakenWithoutML","var timeTakenWithoutML: Long = 0","live.hms.video.sdk.ProcessTimeVariables.timeTakenWithoutML"]},{"name":"var token: String? = null","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.token","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/token.html","searchKeys":["token","var token: String? = null","live.hms.video.sdk.OfflineAnalyticsPeerInfo.token"]},{"name":"var total: Int = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.total","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/total.html","searchKeys":["total","var total: Int = 0","live.hms.video.polls.models.question.HMSPollQuestion.total"]},{"name":"var totalCount: Int = 0","description":"live.hms.video.sdk.models.PeerListIterator.totalCount","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/total-count.html","searchKeys":["totalCount","var totalCount: Int = 0","live.hms.video.sdk.models.PeerListIterator.totalCount"]},{"name":"var totalFreezesDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalFreezesDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/total-freezes-duration.html","searchKeys":["totalFreezesDuration","var totalFreezesDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalFreezesDuration"]},{"name":"var totalPacketLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-packet-lost.html","searchKeys":["totalPacketLost","var totalPacketLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketLost"]},{"name":"var totalPacketReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-packet-received.html","searchKeys":["totalPacketReceived","var totalPacketReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketReceived"]},{"name":"var totalPacketSendDelay: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketSendDelay","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/total-packet-send-delay.html","searchKeys":["totalPacketSendDelay","var totalPacketSendDelay: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketSendDelay"]},{"name":"var totalPacketsLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/total-packets-lost.html","searchKeys":["totalPacketsLost","var totalPacketsLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.totalPacketsLost"]},{"name":"var totalPacketsLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/total-packets-lost.html","searchKeys":["totalPacketsLost","var totalPacketsLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketsLost"]},{"name":"var totalPausesDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalPausesDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/total-pauses-duration.html","searchKeys":["totalPausesDuration","var totalPausesDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalPausesDuration"]},{"name":"var totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/total-round-trip-time.html","searchKeys":["totalRoundTripTime","var totalRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.totalRoundTripTime"]},{"name":"var totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/total-round-trip-time.html","searchKeys":["totalRoundTripTime","var totalRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.totalRoundTripTime"]},{"name":"var totalSampleDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalSampleDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-sample-duration.html","searchKeys":["totalSampleDuration","var totalSampleDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalSampleDuration"]},{"name":"var transcriptions: List","description":"live.hms.video.sdk.models.role.PermissionsParams.transcriptions","location":"lib/live.hms.video.sdk.models.role/-permissions-params/transcriptions.html","searchKeys":["transcriptions","var transcriptions: List","live.hms.video.sdk.models.role.PermissionsParams.transcriptions"]},{"name":"var updatedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.updatedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/updated-at.html","searchKeys":["updatedAt","var updatedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.updatedAt"]},{"name":"var userData: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.userData","location":"lib/live.hms.video.database.entity/-analytics-peer/user-data.html","searchKeys":["userData","var userData: String? = null","live.hms.video.database.entity.AnalyticsPeer.userData"]},{"name":"var userName: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.userName","location":"lib/live.hms.video.database.entity/-analytics-peer/user-name.html","searchKeys":["userName","var userName: String? = null","live.hms.video.database.entity.AnalyticsPeer.userName"]},{"name":"var videoTrack: HMSLocalVideoTrack? = null","description":"live.hms.video.diagnostics.HMSDiagnostics.videoTrack","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/video-track.html","searchKeys":["videoTrack","var videoTrack: HMSLocalVideoTrack? = null","live.hms.video.diagnostics.HMSDiagnostics.videoTrack"]},{"name":"var volume: Double","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.volume","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/volume.html","searchKeys":["volume","var volume: Double","live.hms.video.media.tracks.HMSLocalAudioTrack.volume"]},{"name":"var voteCount: Long = 0","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.voteCount","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/vote-count.html","searchKeys":["voteCount","var voteCount: Long = 0","live.hms.video.polls.models.question.HMSPollQuestionOption.voteCount"]},{"name":"var webRtcLogLevel: HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.webRtcLogLevel","location":"lib/live.hms.video.utils/-h-m-s-logger/web-rtc-log-level.html","searchKeys":["webRtcLogLevel","var webRtcLogLevel: HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.webRtcLogLevel"]},{"name":"var websocketUrl: String","description":"live.hms.video.database.entity.AnalyticsCluster.websocketUrl","location":"lib/live.hms.video.database.entity/-analytics-cluster/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String","live.hms.video.database.entity.AnalyticsCluster.websocketUrl"]},{"name":"var websocketUrl: String? = null","description":"live.hms.video.diagnostics.models.SignallingReport.websocketUrl","location":"lib/live.hms.video.diagnostics.models/-signalling-report/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String? = null","live.hms.video.diagnostics.models.SignallingReport.websocketUrl"]},{"name":"var websocketUrl: String? = null","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.websocketUrl","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String? = null","live.hms.video.sdk.OfflineAnalyticsPeerInfo.websocketUrl"]},{"name":"var width: Int","description":"live.hms.video.media.settings.HMSVideoResolution.width","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/width.html","searchKeys":["width","var width: Int","live.hms.video.media.settings.HMSVideoResolution.width"]},{"name":"var write: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.write","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/write.html","searchKeys":["write","var write: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.write"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.stats.PlayerStatsListener.onError","location":"stats/live.hms.stats/-player-stats-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.stats.PlayerStatsListener.onError"]},{"name":"abstract fun onEventUpdate(playerStatsModel: PlayerStatsModel)","description":"live.hms.stats.PlayerStatsListener.onEventUpdate","location":"stats/live.hms.stats/-player-stats-listener/on-event-update.html","searchKeys":["onEventUpdate","abstract fun onEventUpdate(playerStatsModel: PlayerStatsModel)","live.hms.stats.PlayerStatsListener.onEventUpdate"]},{"name":"class PlayerEventsCollector(var hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig()) : AnalyticsListener","description":"live.hms.stats.PlayerEventsCollector","location":"stats/live.hms.stats/-player-events-collector/index.html","searchKeys":["PlayerEventsCollector","class PlayerEventsCollector(var hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig()) : AnalyticsListener","live.hms.stats.PlayerEventsCollector"]},{"name":"class Utils","description":"live.hms.stats.Utils","location":"stats/live.hms.stats/-utils/index.html","searchKeys":["Utils","class Utils","live.hms.stats.Utils"]},{"name":"const val TAG: String","description":"live.hms.stats.PlayerEventsCollector.Companion.TAG","location":"stats/live.hms.stats/-player-events-collector/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.stats.PlayerEventsCollector.Companion.TAG"]},{"name":"data class Bandwidth(val bandWidthEstimate: Long = 0, val totalBytesLoaded: Long = 0, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/index.html","searchKeys":["Bandwidth","data class Bandwidth(val bandWidthEstimate: Long = 0, val totalBytesLoaded: Long = 0, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.Bandwidth"]},{"name":"data class FrameInfo(val droppedFrameCount: Int = 0, val totalFrameCount: Int = 0, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/index.html","searchKeys":["FrameInfo","data class FrameInfo(val droppedFrameCount: Int = 0, val totalFrameCount: Int = 0, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.FrameInfo"]},{"name":"data class InitConfig(var eventRate: Long = 1000)","description":"live.hms.stats.model.InitConfig","location":"stats/live.hms.stats.model/-init-config/index.html","searchKeys":["InitConfig","data class InitConfig(var eventRate: Long = 1000)","live.hms.stats.model.InitConfig"]},{"name":"data class PlayerStatsModel(var bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), var videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), var frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), var bufferedDuration: Long = 0, var distanceFromLive: Long = 0)","description":"live.hms.stats.model.PlayerStatsModel","location":"stats/live.hms.stats.model/-player-stats-model/index.html","searchKeys":["PlayerStatsModel","data class PlayerStatsModel(var bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), var videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), var frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), var bufferedDuration: Long = 0, var distanceFromLive: Long = 0)","live.hms.stats.model.PlayerStatsModel"]},{"name":"data class VideoInfo(var videoHeight: Int = 0, var videoWidth: Int = 0, var averageBitrate: Int = 0, val frameRate: Float = 0.0f, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/index.html","searchKeys":["VideoInfo","data class VideoInfo(var videoHeight: Int = 0, var videoWidth: Int = 0, var averageBitrate: Int = 0, val frameRate: Float = 0.0f, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.VideoInfo"]},{"name":"fun Bandwidth(bandWidthEstimate: Long = 0, totalBytesLoaded: Long = 0, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.Bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/-bandwidth.html","searchKeys":["Bandwidth","fun Bandwidth(bandWidthEstimate: Long = 0, totalBytesLoaded: Long = 0, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.Bandwidth.Bandwidth"]},{"name":"fun FrameInfo(droppedFrameCount: Int = 0, totalFrameCount: Int = 0, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.FrameInfo","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/-frame-info.html","searchKeys":["FrameInfo","fun FrameInfo(droppedFrameCount: Int = 0, totalFrameCount: Int = 0, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.FrameInfo.FrameInfo"]},{"name":"fun InitConfig(eventRate: Long = 1000)","description":"live.hms.stats.model.InitConfig.InitConfig","location":"stats/live.hms.stats.model/-init-config/-init-config.html","searchKeys":["InitConfig","fun InitConfig(eventRate: Long = 1000)","live.hms.stats.model.InitConfig.InitConfig"]},{"name":"fun PlayerEventsCollector(hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig())","description":"live.hms.stats.PlayerEventsCollector.PlayerEventsCollector","location":"stats/live.hms.stats/-player-events-collector/-player-events-collector.html","searchKeys":["PlayerEventsCollector","fun PlayerEventsCollector(hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig())","live.hms.stats.PlayerEventsCollector.PlayerEventsCollector"]},{"name":"fun PlayerStatsModel(bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), bufferedDuration: Long = 0, distanceFromLive: Long = 0)","description":"live.hms.stats.model.PlayerStatsModel.PlayerStatsModel","location":"stats/live.hms.stats.model/-player-stats-model/-player-stats-model.html","searchKeys":["PlayerStatsModel","fun PlayerStatsModel(bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), bufferedDuration: Long = 0, distanceFromLive: Long = 0)","live.hms.stats.model.PlayerStatsModel.PlayerStatsModel"]},{"name":"fun Utils()","description":"live.hms.stats.Utils.Utils","location":"stats/live.hms.stats/-utils/-utils.html","searchKeys":["Utils","fun Utils()","live.hms.stats.Utils.Utils"]},{"name":"fun VideoInfo(videoHeight: Int = 0, videoWidth: Int = 0, averageBitrate: Int = 0, frameRate: Float = 0.0f, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.VideoInfo","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/-video-info.html","searchKeys":["VideoInfo","fun VideoInfo(videoHeight: Int = 0, videoWidth: Int = 0, averageBitrate: Int = 0, frameRate: Float = 0.0f, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.VideoInfo.VideoInfo"]},{"name":"fun addStatsListener(playerEventsListener: PlayerStatsListener)","description":"live.hms.stats.PlayerEventsCollector.addStatsListener","location":"stats/live.hms.stats/-player-events-collector/add-stats-listener.html","searchKeys":["addStatsListener","fun addStatsListener(playerEventsListener: PlayerStatsListener)","live.hms.stats.PlayerEventsCollector.addStatsListener"]},{"name":"fun humanReadableByteCount(bytes: Long, si: Boolean, isBits: Boolean): String","description":"live.hms.stats.Utils.Companion.humanReadableByteCount","location":"stats/live.hms.stats/-utils/-companion/human-readable-byte-count.html","searchKeys":["humanReadableByteCount","fun humanReadableByteCount(bytes: Long, si: Boolean, isBits: Boolean): String","live.hms.stats.Utils.Companion.humanReadableByteCount"]},{"name":"fun removeListener()","description":"live.hms.stats.PlayerEventsCollector.removeListener","location":"stats/live.hms.stats/-player-events-collector/remove-listener.html","searchKeys":["removeListener","fun removeListener()","live.hms.stats.PlayerEventsCollector.removeListener"]},{"name":"fun removeStatsListener()","description":"live.hms.stats.PlayerEventsCollector.removeStatsListener","location":"stats/live.hms.stats/-player-events-collector/remove-stats-listener.html","searchKeys":["removeStatsListener","fun removeStatsListener()","live.hms.stats.PlayerEventsCollector.removeStatsListener"]},{"name":"fun setExoPlayer(exoPlayer: ExoPlayer?)","description":"live.hms.stats.PlayerEventsCollector.setExoPlayer","location":"stats/live.hms.stats/-player-events-collector/set-exo-player.html","searchKeys":["setExoPlayer","fun setExoPlayer(exoPlayer: ExoPlayer?)","live.hms.stats.PlayerEventsCollector.setExoPlayer"]},{"name":"interface PlayerStatsListener","description":"live.hms.stats.PlayerStatsListener","location":"stats/live.hms.stats/-player-stats-listener/index.html","searchKeys":["PlayerStatsListener","interface PlayerStatsListener","live.hms.stats.PlayerStatsListener"]},{"name":"object Companion","description":"live.hms.stats.PlayerEventsCollector.Companion","location":"stats/live.hms.stats/-player-events-collector/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.stats.PlayerEventsCollector.Companion"]},{"name":"object Companion","description":"live.hms.stats.Utils.Companion","location":"stats/live.hms.stats/-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.stats.Utils.Companion"]},{"name":"open override fun onBandwidthEstimate(eventTime: AnalyticsListener.EventTime, totalLoadTimeMs: Int, totalBytesLoaded: Long, bitrateEstimate: Long)","description":"live.hms.stats.PlayerEventsCollector.onBandwidthEstimate","location":"stats/live.hms.stats/-player-events-collector/on-bandwidth-estimate.html","searchKeys":["onBandwidthEstimate","open override fun onBandwidthEstimate(eventTime: AnalyticsListener.EventTime, totalLoadTimeMs: Int, totalBytesLoaded: Long, bitrateEstimate: Long)","live.hms.stats.PlayerEventsCollector.onBandwidthEstimate"]},{"name":"open override fun onDroppedVideoFrames(eventTime: AnalyticsListener.EventTime, droppedFrames: Int, elapsedMs: Long)","description":"live.hms.stats.PlayerEventsCollector.onDroppedVideoFrames","location":"stats/live.hms.stats/-player-events-collector/on-dropped-video-frames.html","searchKeys":["onDroppedVideoFrames","open override fun onDroppedVideoFrames(eventTime: AnalyticsListener.EventTime, droppedFrames: Int, elapsedMs: Long)","live.hms.stats.PlayerEventsCollector.onDroppedVideoFrames"]},{"name":"open override fun onPlayerError(eventTime: AnalyticsListener.EventTime, error: PlaybackException)","description":"live.hms.stats.PlayerEventsCollector.onPlayerError","location":"stats/live.hms.stats/-player-events-collector/on-player-error.html","searchKeys":["onPlayerError","open override fun onPlayerError(eventTime: AnalyticsListener.EventTime, error: PlaybackException)","live.hms.stats.PlayerEventsCollector.onPlayerError"]},{"name":"open override fun onVideoInputFormatChanged(eventTime: AnalyticsListener.EventTime, format: Format, decoderReuseEvaluation: DecoderReuseEvaluation?)","description":"live.hms.stats.PlayerEventsCollector.onVideoInputFormatChanged","location":"stats/live.hms.stats/-player-events-collector/on-video-input-format-changed.html","searchKeys":["onVideoInputFormatChanged","open override fun onVideoInputFormatChanged(eventTime: AnalyticsListener.EventTime, format: Format, decoderReuseEvaluation: DecoderReuseEvaluation?)","live.hms.stats.PlayerEventsCollector.onVideoInputFormatChanged"]},{"name":"open override fun toString(): String","description":"live.hms.stats.model.PlayerStatsModel.toString","location":"stats/live.hms.stats.model/-player-stats-model/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.stats.model.PlayerStatsModel.toString"]},{"name":"val bandWidthEstimate: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.bandWidthEstimate","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/band-width-estimate.html","searchKeys":["bandWidthEstimate","val bandWidthEstimate: Long = 0","live.hms.stats.model.PlayerStatsModel.Bandwidth.bandWidthEstimate"]},{"name":"val droppedFrameCount: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.droppedFrameCount","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/dropped-frame-count.html","searchKeys":["droppedFrameCount","val droppedFrameCount: Int = 0","live.hms.stats.model.PlayerStatsModel.FrameInfo.droppedFrameCount"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.Bandwidth.eventTime"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.FrameInfo.eventTime"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.VideoInfo.eventTime"]},{"name":"val frameRate: Float = 0.0f","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.frameRate","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/frame-rate.html","searchKeys":["frameRate","val frameRate: Float = 0.0f","live.hms.stats.model.PlayerStatsModel.VideoInfo.frameRate"]},{"name":"val totalBytesLoaded: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.totalBytesLoaded","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/total-bytes-loaded.html","searchKeys":["totalBytesLoaded","val totalBytesLoaded: Long = 0","live.hms.stats.model.PlayerStatsModel.Bandwidth.totalBytesLoaded"]},{"name":"val totalFrameCount: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.totalFrameCount","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/total-frame-count.html","searchKeys":["totalFrameCount","val totalFrameCount: Int = 0","live.hms.stats.model.PlayerStatsModel.FrameInfo.totalFrameCount"]},{"name":"var averageBitrate: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.averageBitrate","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/average-bitrate.html","searchKeys":["averageBitrate","var averageBitrate: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.averageBitrate"]},{"name":"var bandwidth: PlayerStatsModel.Bandwidth","description":"live.hms.stats.model.PlayerStatsModel.bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/bandwidth.html","searchKeys":["bandwidth","var bandwidth: PlayerStatsModel.Bandwidth","live.hms.stats.model.PlayerStatsModel.bandwidth"]},{"name":"var bufferedDuration: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.bufferedDuration","location":"stats/live.hms.stats.model/-player-stats-model/buffered-duration.html","searchKeys":["bufferedDuration","var bufferedDuration: Long = 0","live.hms.stats.model.PlayerStatsModel.bufferedDuration"]},{"name":"var distanceFromLive: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.distanceFromLive","location":"stats/live.hms.stats.model/-player-stats-model/distance-from-live.html","searchKeys":["distanceFromLive","var distanceFromLive: Long = 0","live.hms.stats.model.PlayerStatsModel.distanceFromLive"]},{"name":"var eventRate: Long = 1000","description":"live.hms.stats.model.InitConfig.eventRate","location":"stats/live.hms.stats.model/-init-config/event-rate.html","searchKeys":["eventRate","var eventRate: Long = 1000","live.hms.stats.model.InitConfig.eventRate"]},{"name":"var frameInfo: PlayerStatsModel.FrameInfo","description":"live.hms.stats.model.PlayerStatsModel.frameInfo","location":"stats/live.hms.stats.model/-player-stats-model/frame-info.html","searchKeys":["frameInfo","var frameInfo: PlayerStatsModel.FrameInfo","live.hms.stats.model.PlayerStatsModel.frameInfo"]},{"name":"var hmsSdk: HMSSDK?","description":"live.hms.stats.PlayerEventsCollector.hmsSdk","location":"stats/live.hms.stats/-player-events-collector/hms-sdk.html","searchKeys":["hmsSdk","var hmsSdk: HMSSDK?","live.hms.stats.PlayerEventsCollector.hmsSdk"]},{"name":"var videoHeight: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.videoHeight","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/video-height.html","searchKeys":["videoHeight","var videoHeight: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.videoHeight"]},{"name":"var videoInfo: PlayerStatsModel.VideoInfo","description":"live.hms.stats.model.PlayerStatsModel.videoInfo","location":"stats/live.hms.stats.model/-player-stats-model/video-info.html","searchKeys":["videoInfo","var videoInfo: PlayerStatsModel.VideoInfo","live.hms.stats.model.PlayerStatsModel.videoInfo"]},{"name":"var videoWidth: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.videoWidth","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/video-width.html","searchKeys":["videoWidth","var videoWidth: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.videoWidth"]},{"name":"class HMSVirtualBackground(hmsSdk: HMSSDK) : HmsVirtualBackgroundInterface","description":"live.hms.video.virtualbackground.HMSVirtualBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","class HMSVirtualBackground(hmsSdk: HMSSDK) : HmsVirtualBackgroundInterface","live.hms.video.virtualbackground.HMSVirtualBackground"]},{"name":"const val TAG: String","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.TAG","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.TAG"]},{"name":"fun HMSVirtualBackground(hmsSdk: HMSSDK)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.HMSVirtualBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(hmsSdk: HMSSDK)","live.hms.video.virtualbackground.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun exceptionToHmsException(description: String, throwable: Throwable? = null): HMSException","description":"live.hms.video.virtualbackground.exceptionToHmsException","location":"virtualBackground/live.hms.video.virtualbackground/exception-to-hms-exception.html","searchKeys":["exceptionToHmsException","fun exceptionToHmsException(description: String, throwable: Throwable? = null): HMSException","live.hms.video.virtualbackground.exceptionToHmsException"]},{"name":"object Companion","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.virtualbackground.HMSVirtualBackground.Companion"]},{"name":"open override fun disableEffects()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.disableEffects","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/disable-effects.html","searchKeys":["disableEffects","open override fun disableEffects()","live.hms.video.virtualbackground.HMSVirtualBackground.disableEffects"]},{"name":"open override fun enableBackground(bitmap: Bitmap)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.enableBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/enable-background.html","searchKeys":["enableBackground","open override fun enableBackground(bitmap: Bitmap)","live.hms.video.virtualbackground.HMSVirtualBackground.enableBackground"]},{"name":"open override fun enableBlur(blurPercentage: Int)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.enableBlur","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/enable-blur.html","searchKeys":["enableBlur","open override fun enableBlur(blurPercentage: Int)","live.hms.video.virtualbackground.HMSVirtualBackground.enableBlur"]},{"name":"open override fun getCurrentBlurPercentage(): Int","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getCurrentBlurPercentage","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-current-blur-percentage.html","searchKeys":["getCurrentBlurPercentage","open override fun getCurrentBlurPercentage(): Int","live.hms.video.virtualbackground.HMSVirtualBackground.getCurrentBlurPercentage"]},{"name":"open override fun getName(): String","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getName","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.video.virtualbackground.HMSVirtualBackground.getName"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getPluginType","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.video.virtualbackground.HMSVirtualBackground.getPluginType"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.video.virtualbackground.HMSVirtualBackground.isSupported","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.video.virtualbackground.HMSVirtualBackground.isSupported"]},{"name":"open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.processVideoFrame","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.virtualbackground.HMSVirtualBackground.processVideoFrame"]},{"name":"open override fun setKey(key: String)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.setKey","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/set-key.html","searchKeys":["setKey","open override fun setKey(key: String)","live.hms.video.virtualbackground.HMSVirtualBackground.setKey"]},{"name":"open override fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.setVideoFrameInfoListener","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/set-video-frame-info-listener.html","searchKeys":["setVideoFrameInfoListener","open override fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","live.hms.video.virtualbackground.HMSVirtualBackground.setVideoFrameInfoListener"]},{"name":"open override fun stop()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.stop","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.virtualbackground.HMSVirtualBackground.stop"]},{"name":"open suspend override fun init()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.init","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/init.html","searchKeys":["init","open suspend override fun init()","live.hms.video.virtualbackground.HMSVirtualBackground.init"]},{"name":"suspend fun EffectsSDK.init(context: Context, effectsKey: String)","description":"live.hms.video.virtualbackground.init","location":"virtualBackground/live.hms.video.virtualbackground/init.html","searchKeys":["init","suspend fun EffectsSDK.init(context: Context, effectsKey: String)","live.hms.video.virtualbackground.init"]},{"name":"suspend fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline","description":"live.hms.video.virtualbackground.createPipeLine","location":"virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html","searchKeys":["createPipeLine","suspend fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline","live.hms.video.virtualbackground.createPipeLine"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.MIN_API_LEVEL","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.MIN_API_LEVEL"]},{"name":"var textures: IntArray","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.textures","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.textures"]},{"name":"BRIGHTNESS","description":"live.hms.videofilters.VideoFilter.BRIGHTNESS","location":"video-filters/live.hms.videofilters/-video-filter/-b-r-i-g-h-t-n-e-s-s/index.html","searchKeys":["BRIGHTNESS","BRIGHTNESS","live.hms.videofilters.VideoFilter.BRIGHTNESS"]},{"name":"CONTRAST","description":"live.hms.videofilters.VideoFilter.CONTRAST","location":"video-filters/live.hms.videofilters/-video-filter/-c-o-n-t-r-a-s-t/index.html","searchKeys":["CONTRAST","CONTRAST","live.hms.videofilters.VideoFilter.CONTRAST"]},{"name":"REDNESS","description":"live.hms.videofilters.VideoFilter.REDNESS","location":"video-filters/live.hms.videofilters/-video-filter/-r-e-d-n-e-s-s/index.html","searchKeys":["REDNESS","REDNESS","live.hms.videofilters.VideoFilter.REDNESS"]},{"name":"SHARPNESS","description":"live.hms.videofilters.VideoFilter.SHARPNESS","location":"video-filters/live.hms.videofilters/-video-filter/-s-h-a-r-p-n-e-s-s/index.html","searchKeys":["SHARPNESS","SHARPNESS","live.hms.videofilters.VideoFilter.SHARPNESS"]},{"name":"SMOOTHHNESS","description":"live.hms.videofilters.VideoFilter.SMOOTHHNESS","location":"video-filters/live.hms.videofilters/-video-filter/-s-m-o-o-t-h-h-n-e-s-s/index.html","searchKeys":["SMOOTHHNESS","SMOOTHHNESS","live.hms.videofilters.VideoFilter.SMOOTHHNESS"]},{"name":"class HMSGPUImageFilter(currentUsedFilters: MutableMap) : GPUImageFilterGroup","description":"live.hms.videofilters.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html","searchKeys":["HMSGPUImageFilter","class HMSGPUImageFilter(currentUsedFilters: MutableMap) : GPUImageFilterGroup","live.hms.videofilters.HMSGPUImageFilter"]},{"name":"class HMSVideoFilter(hmsSdk: HMSSDK) : HMSVideoPlugin","description":"live.hms.videofilters.HMSVideoFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/index.html","searchKeys":["HMSVideoFilter","class HMSVideoFilter(hmsSdk: HMSSDK) : HMSVideoPlugin","live.hms.videofilters.HMSVideoFilter"]},{"name":"const val TAG: String","description":"live.hms.videofilters.HMSVideoFilter.Companion.TAG","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.videofilters.HMSVideoFilter.Companion.TAG"]},{"name":"enum VideoFilter","description":"live.hms.videofilters.VideoFilter","location":"video-filters/live.hms.videofilters/-video-filter/index.html","searchKeys":["VideoFilter","enum VideoFilter","live.hms.videofilters.VideoFilter"]},{"name":"fun HMSGPUImageFilter(currentUsedFilters: MutableMap)","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter.html","searchKeys":["HMSGPUImageFilter","fun HMSGPUImageFilter(currentUsedFilters: MutableMap)","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter"]},{"name":"fun HMSVideoFilter(hmsSdk: HMSSDK)","description":"live.hms.videofilters.HMSVideoFilter.HMSVideoFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-h-m-s-video-filter.html","searchKeys":["HMSVideoFilter","fun HMSVideoFilter(hmsSdk: HMSSDK)","live.hms.videofilters.HMSVideoFilter.HMSVideoFilter"]},{"name":"fun getBrightnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getBrightnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-brightness-progress.html","searchKeys":["getBrightnessProgress","fun getBrightnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getBrightnessProgress"]},{"name":"fun getContrastProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getContrastProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-contrast-progress.html","searchKeys":["getContrastProgress","fun getContrastProgress(): Float","live.hms.videofilters.HMSVideoFilter.getContrastProgress"]},{"name":"fun getGpuImage(): GPUImage?","description":"live.hms.videofilters.HMSVideoFilter.getGpuImage","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-gpu-image.html","searchKeys":["getGpuImage","fun getGpuImage(): GPUImage?","live.hms.videofilters.HMSVideoFilter.getGpuImage"]},{"name":"fun getRednessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getRednessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-redness-progress.html","searchKeys":["getRednessProgress","fun getRednessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getRednessProgress"]},{"name":"fun getSharpnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getSharpnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-sharpness-progress.html","searchKeys":["getSharpnessProgress","fun getSharpnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getSharpnessProgress"]},{"name":"fun getSmoothnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getSmoothnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-smoothness-progress.html","searchKeys":["getSmoothnessProgress","fun getSmoothnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getSmoothnessProgress"]},{"name":"fun initFilters(currentUsedFilters: MutableMap): List","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.initFilters","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/init-filters.html","searchKeys":["initFilters","fun initFilters(currentUsedFilters: MutableMap): List","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.initFilters"]},{"name":"fun range(percentage: Int, start: Float, end: Float): Float","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.range","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/range.html","searchKeys":["range","fun range(percentage: Int, start: Float, end: Float): Float","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.range"]},{"name":"fun setBrightness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setBrightness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-brightness.html","searchKeys":["setBrightness","fun setBrightness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setBrightness"]},{"name":"fun setBrightness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setBrightness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-brightness.html","searchKeys":["setBrightness","fun setBrightness(value: Float)","live.hms.videofilters.HMSVideoFilter.setBrightness"]},{"name":"fun setContrast(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setContrast","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-contrast.html","searchKeys":["setContrast","fun setContrast(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setContrast"]},{"name":"fun setContrast(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setContrast","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-contrast.html","searchKeys":["setContrast","fun setContrast(value: Float)","live.hms.videofilters.HMSVideoFilter.setContrast"]},{"name":"fun setRedness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setRedness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-redness.html","searchKeys":["setRedness","fun setRedness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setRedness"]},{"name":"fun setRedness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setRedness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-redness.html","searchKeys":["setRedness","fun setRedness(value: Float)","live.hms.videofilters.HMSVideoFilter.setRedness"]},{"name":"fun setSharpness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setSharpness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-sharpness.html","searchKeys":["setSharpness","fun setSharpness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setSharpness"]},{"name":"fun setSharpness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setSharpness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-sharpness.html","searchKeys":["setSharpness","fun setSharpness(value: Float)","live.hms.videofilters.HMSVideoFilter.setSharpness"]},{"name":"fun setSmoothness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setSmoothness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-smoothness.html","searchKeys":["setSmoothness","fun setSmoothness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setSmoothness"]},{"name":"fun setSmoothness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setSmoothness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-smoothness.html","searchKeys":["setSmoothness","fun setSmoothness(value: Float)","live.hms.videofilters.HMSVideoFilter.setSmoothness"]},{"name":"object Companion","description":"live.hms.videofilters.HMSVideoFilter.Companion","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.videofilters.HMSVideoFilter.Companion"]},{"name":"object HMSGPUImageFilter","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/index.html","searchKeys":["HMSGPUImageFilter","object HMSGPUImageFilter","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter"]},{"name":"open class GPUImageBeautyFilter : GPUImageFilter","description":"live.hms.videofilters.GPUImageBeautyFilter","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html","searchKeys":["GPUImageBeautyFilter","open class GPUImageBeautyFilter : GPUImageFilter","live.hms.videofilters.GPUImageBeautyFilter"]},{"name":"open fun GPUImageBeautyFilter()","description":"live.hms.videofilters.GPUImageBeautyFilter.GPUImageBeautyFilter","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-g-p-u-image-beauty-filter.html","searchKeys":["GPUImageBeautyFilter","open fun GPUImageBeautyFilter()","live.hms.videofilters.GPUImageBeautyFilter.GPUImageBeautyFilter"]},{"name":"open fun onInit()","description":"live.hms.videofilters.GPUImageBeautyFilter.onInit","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/on-init.html","searchKeys":["onInit","open fun onInit()","live.hms.videofilters.GPUImageBeautyFilter.onInit"]},{"name":"open fun onOutputSizeChanged(width: Int, height: Int)","description":"live.hms.videofilters.GPUImageBeautyFilter.onOutputSizeChanged","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/on-output-size-changed.html","searchKeys":["onOutputSizeChanged","open fun onOutputSizeChanged(width: Int, height: Int)","live.hms.videofilters.GPUImageBeautyFilter.onOutputSizeChanged"]},{"name":"open fun setBeautyLevel(beautyLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setBeautyLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-beauty-level.html","searchKeys":["setBeautyLevel","open fun setBeautyLevel(beautyLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setBeautyLevel"]},{"name":"open fun setBrightLevel(brightLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setBrightLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-bright-level.html","searchKeys":["setBrightLevel","open fun setBrightLevel(brightLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setBrightLevel"]},{"name":"open fun setParams(beauty: Float, tone: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setParams","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-params.html","searchKeys":["setParams","open fun setParams(beauty: Float, tone: Float)","live.hms.videofilters.GPUImageBeautyFilter.setParams"]},{"name":"open fun setToneLevel(toneLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setToneLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-tone-level.html","searchKeys":["setToneLevel","open fun setToneLevel(toneLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setToneLevel"]},{"name":"open fun valueOf(name: String): VideoFilter","description":"live.hms.videofilters.VideoFilter.valueOf","location":"video-filters/live.hms.videofilters/-video-filter/value-of.html","searchKeys":["valueOf","open fun valueOf(name: String): VideoFilter","live.hms.videofilters.VideoFilter.valueOf"]},{"name":"open fun values(): Array","description":"live.hms.videofilters.VideoFilter.values","location":"video-filters/live.hms.videofilters/-video-filter/values.html","searchKeys":["values","open fun values(): Array","live.hms.videofilters.VideoFilter.values"]},{"name":"open override fun getName(): String","description":"live.hms.videofilters.HMSVideoFilter.getName","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.videofilters.HMSVideoFilter.getName"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.videofilters.HMSVideoFilter.getPluginType","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.videofilters.HMSVideoFilter.getPluginType"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.videofilters.HMSVideoFilter.isSupported","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.videofilters.HMSVideoFilter.isSupported"]},{"name":"open override fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.videofilters.HMSVideoFilter.processVideoFrame","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.videofilters.HMSVideoFilter.processVideoFrame"]},{"name":"open override fun stop()","description":"live.hms.videofilters.HMSVideoFilter.stop","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/stop.html","searchKeys":["stop","open override fun stop()","live.hms.videofilters.HMSVideoFilter.stop"]},{"name":"open suspend override fun init()","description":"live.hms.videofilters.HMSVideoFilter.init","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/init.html","searchKeys":["init","open suspend override fun init()","live.hms.videofilters.HMSVideoFilter.init"]},{"name":"val BILATERAL_FRAGMENT_SHADER: String = \" varying highp vec2 textureCoordinate;\n\n uniform sampler2D inputImageTexture;\n\n uniform highp vec2 singleStepOffset;\n uniform highp vec4 params;\n uniform highp float brightness;\n\n const highp vec3 W = vec3(0.299, 0.587, 0.114);\n const highp mat3 saturateMatrix = mat3(\n 1.1102, -0.0598, -0.061,\n -0.0774, 1.0826, -0.1186,\n -0.0228, -0.0228, 1.1772);\n highp vec2 blurCoordinates[24];\n\n highp float hardLight(highp float color) {\n if (color <= 0.5)\n color = color * color * 2.0;\n else\n color = 1.0 - ((1.0 - color)*(1.0 - color) * 2.0);\n return color;\n}\n\n void main(){\n highp vec3 centralColor = texture2D(inputImageTexture, textureCoordinate).rgb;\n blurCoordinates[0] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -10.0);\n blurCoordinates[1] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 10.0);\n blurCoordinates[2] = textureCoordinate.xy + singleStepOffset * vec2(-10.0, 0.0);\n blurCoordinates[3] = textureCoordinate.xy + singleStepOffset * vec2(10.0, 0.0);\n blurCoordinates[4] = textureCoordinate.xy + singleStepOffset * vec2(5.0, -8.0);\n blurCoordinates[5] = textureCoordinate.xy + singleStepOffset * vec2(5.0, 8.0);\n blurCoordinates[6] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, 8.0);\n blurCoordinates[7] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, -8.0);\n blurCoordinates[8] = textureCoordinate.xy + singleStepOffset * vec2(8.0, -5.0);\n blurCoordinates[9] = textureCoordinate.xy + singleStepOffset * vec2(8.0, 5.0);\n blurCoordinates[10] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, 5.0);\n blurCoordinates[11] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, -5.0);\n blurCoordinates[12] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -6.0);\n blurCoordinates[13] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 6.0);\n blurCoordinates[14] = textureCoordinate.xy + singleStepOffset * vec2(6.0, 0.0);\n blurCoordinates[15] = textureCoordinate.xy + singleStepOffset * vec2(-6.0, 0.0);\n blurCoordinates[16] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, -4.0);\n blurCoordinates[17] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, 4.0);\n blurCoordinates[18] = textureCoordinate.xy + singleStepOffset * vec2(4.0, -4.0);\n blurCoordinates[19] = textureCoordinate.xy + singleStepOffset * vec2(4.0, 4.0);\n blurCoordinates[20] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, -2.0);\n blurCoordinates[21] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, 2.0);\n blurCoordinates[22] = textureCoordinate.xy + singleStepOffset * vec2(2.0, -2.0);\n blurCoordinates[23] = textureCoordinate.xy + singleStepOffset * vec2(2.0, 2.0);\n\n highp float sampleColor = centralColor.g * 22.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[0]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[1]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[2]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[3]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[4]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[5]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[6]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[7]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[8]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[9]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[10]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[11]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[12]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[13]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[14]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[15]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[16]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[17]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[18]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[19]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[20]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[21]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[22]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[23]).g * 3.0;\n\n sampleColor = sampleColor / 62.0;\n\n highp float highPass = centralColor.g - sampleColor + 0.5;\n\n for (int i = 0; i < 5; i++) {\n highPass = hardLight(highPass);\n }\n highp float lumance = dot(centralColor, W);\n\n highp float alpha = pow(lumance, params.r);\n\n highp vec3 smoothColor = centralColor + (centralColor-vec3(highPass))*alpha*0.1;\n\n smoothColor.r = clamp(pow(smoothColor.r, params.g), 0.0, 1.0);\n smoothColor.g = clamp(pow(smoothColor.g, params.g), 0.0, 1.0);\n smoothColor.b = clamp(pow(smoothColor.b, params.g), 0.0, 1.0);\n\n highp vec3 lvse = vec3(1.0)-(vec3(1.0)-smoothColor)*(vec3(1.0)-centralColor);\n highp vec3 bianliang = max(smoothColor, centralColor);\n highp vec3 rouguang = 2.0*centralColor*smoothColor + centralColor*centralColor - 2.0*centralColor*centralColor*smoothColor;\n\n gl_FragColor = vec4(mix(centralColor, lvse, alpha), 1.0);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, bianliang, alpha);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, rouguang, params.b);\n\n highp vec3 satcolor = gl_FragColor.rgb * saturateMatrix;\n gl_FragColor.rgb = mix(gl_FragColor.rgb, satcolor, params.a);\n gl_FragColor.rgb = vec3(gl_FragColor.rgb + vec3(brightness));\n}\"","description":"live.hms.videofilters.GPUImageBeautyFilter.BILATERAL_FRAGMENT_SHADER","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html","searchKeys":["BILATERAL_FRAGMENT_SHADER","val BILATERAL_FRAGMENT_SHADER: String = \" varying highp vec2 textureCoordinate;\n\n uniform sampler2D inputImageTexture;\n\n uniform highp vec2 singleStepOffset;\n uniform highp vec4 params;\n uniform highp float brightness;\n\n const highp vec3 W = vec3(0.299, 0.587, 0.114);\n const highp mat3 saturateMatrix = mat3(\n 1.1102, -0.0598, -0.061,\n -0.0774, 1.0826, -0.1186,\n -0.0228, -0.0228, 1.1772);\n highp vec2 blurCoordinates[24];\n\n highp float hardLight(highp float color) {\n if (color <= 0.5)\n color = color * color * 2.0;\n else\n color = 1.0 - ((1.0 - color)*(1.0 - color) * 2.0);\n return color;\n}\n\n void main(){\n highp vec3 centralColor = texture2D(inputImageTexture, textureCoordinate).rgb;\n blurCoordinates[0] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -10.0);\n blurCoordinates[1] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 10.0);\n blurCoordinates[2] = textureCoordinate.xy + singleStepOffset * vec2(-10.0, 0.0);\n blurCoordinates[3] = textureCoordinate.xy + singleStepOffset * vec2(10.0, 0.0);\n blurCoordinates[4] = textureCoordinate.xy + singleStepOffset * vec2(5.0, -8.0);\n blurCoordinates[5] = textureCoordinate.xy + singleStepOffset * vec2(5.0, 8.0);\n blurCoordinates[6] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, 8.0);\n blurCoordinates[7] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, -8.0);\n blurCoordinates[8] = textureCoordinate.xy + singleStepOffset * vec2(8.0, -5.0);\n blurCoordinates[9] = textureCoordinate.xy + singleStepOffset * vec2(8.0, 5.0);\n blurCoordinates[10] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, 5.0);\n blurCoordinates[11] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, -5.0);\n blurCoordinates[12] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -6.0);\n blurCoordinates[13] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 6.0);\n blurCoordinates[14] = textureCoordinate.xy + singleStepOffset * vec2(6.0, 0.0);\n blurCoordinates[15] = textureCoordinate.xy + singleStepOffset * vec2(-6.0, 0.0);\n blurCoordinates[16] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, -4.0);\n blurCoordinates[17] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, 4.0);\n blurCoordinates[18] = textureCoordinate.xy + singleStepOffset * vec2(4.0, -4.0);\n blurCoordinates[19] = textureCoordinate.xy + singleStepOffset * vec2(4.0, 4.0);\n blurCoordinates[20] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, -2.0);\n blurCoordinates[21] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, 2.0);\n blurCoordinates[22] = textureCoordinate.xy + singleStepOffset * vec2(2.0, -2.0);\n blurCoordinates[23] = textureCoordinate.xy + singleStepOffset * vec2(2.0, 2.0);\n\n highp float sampleColor = centralColor.g * 22.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[0]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[1]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[2]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[3]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[4]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[5]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[6]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[7]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[8]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[9]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[10]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[11]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[12]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[13]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[14]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[15]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[16]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[17]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[18]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[19]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[20]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[21]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[22]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[23]).g * 3.0;\n\n sampleColor = sampleColor / 62.0;\n\n highp float highPass = centralColor.g - sampleColor + 0.5;\n\n for (int i = 0; i < 5; i++) {\n highPass = hardLight(highPass);\n }\n highp float lumance = dot(centralColor, W);\n\n highp float alpha = pow(lumance, params.r);\n\n highp vec3 smoothColor = centralColor + (centralColor-vec3(highPass))*alpha*0.1;\n\n smoothColor.r = clamp(pow(smoothColor.r, params.g), 0.0, 1.0);\n smoothColor.g = clamp(pow(smoothColor.g, params.g), 0.0, 1.0);\n smoothColor.b = clamp(pow(smoothColor.b, params.g), 0.0, 1.0);\n\n highp vec3 lvse = vec3(1.0)-(vec3(1.0)-smoothColor)*(vec3(1.0)-centralColor);\n highp vec3 bianliang = max(smoothColor, centralColor);\n highp vec3 rouguang = 2.0*centralColor*smoothColor + centralColor*centralColor - 2.0*centralColor*centralColor*smoothColor;\n\n gl_FragColor = vec4(mix(centralColor, lvse, alpha), 1.0);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, bianliang, alpha);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, rouguang, params.b);\n\n highp vec3 satcolor = gl_FragColor.rgb * saturateMatrix;\n gl_FragColor.rgb = mix(gl_FragColor.rgb, satcolor, params.a);\n gl_FragColor.rgb = vec3(gl_FragColor.rgb + vec3(brightness));\n}\"","live.hms.videofilters.GPUImageBeautyFilter.BILATERAL_FRAGMENT_SHADER"]},{"name":"val beautyFilter: GPUImageBeautyFilter","description":"live.hms.videofilters.HMSVideoFilter.beautyFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/beauty-filter.html","searchKeys":["beautyFilter","val beautyFilter: GPUImageBeautyFilter","live.hms.videofilters.HMSVideoFilter.beautyFilter"]},{"name":"val currentUsedFilters: MutableMap","description":"live.hms.videofilters.HMSVideoFilter.currentUsedFilters","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/current-used-filters.html","searchKeys":["currentUsedFilters","val currentUsedFilters: MutableMap","live.hms.videofilters.HMSVideoFilter.currentUsedFilters"]},{"name":"val sharpenFilter: GPUImageSharpenFilter","description":"live.hms.videofilters.HMSVideoFilter.sharpenFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/sharpen-filter.html","searchKeys":["sharpenFilter","val sharpenFilter: GPUImageSharpenFilter","live.hms.videofilters.HMSVideoFilter.sharpenFilter"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.videofilters.HMSVideoFilter.Companion.MIN_API_LEVEL","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.videofilters.HMSVideoFilter.Companion.MIN_API_LEVEL"]},{"name":"var brightnessProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.brightnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/brightness-progress.html","searchKeys":["brightnessProgress","var brightnessProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.brightnessProgress"]},{"name":"var contrastProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.contrastProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/contrast-progress.html","searchKeys":["contrastProgress","var contrastProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.contrastProgress"]},{"name":"var hmsFilter: HMSGPUImageFilter? = null","description":"live.hms.videofilters.HMSVideoFilter.hmsFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/hms-filter.html","searchKeys":["hmsFilter","var hmsFilter: HMSGPUImageFilter? = null","live.hms.videofilters.HMSVideoFilter.hmsFilter"]},{"name":"var redness: Int = 0","description":"live.hms.videofilters.HMSGPUImageFilter.redness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/redness.html","searchKeys":["redness","var redness: Int = 0","live.hms.videofilters.HMSGPUImageFilter.redness"]},{"name":"var sharpnessProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.sharpnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/sharpness-progress.html","searchKeys":["sharpnessProgress","var sharpnessProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.sharpnessProgress"]},{"name":"var smoothness: Int = 0","description":"live.hms.videofilters.HMSGPUImageFilter.smoothness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/smoothness.html","searchKeys":["smoothness","var smoothness: Int = 0","live.hms.videofilters.HMSGPUImageFilter.smoothness"]},{"name":"var textures: IntArray","description":"live.hms.videofilters.HMSVideoFilter.Companion.textures","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.videofilters.HMSVideoFilter.Companion.textures"]},{"name":"abstract fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.addPlayerEventListener","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/add-player-event-listener.html","searchKeys":["addPlayerEventListener","abstract fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","live.hms.hls_player.HmsHlsPlayerInterface.addPlayerEventListener"]},{"name":"abstract fun getCurrentHmsHlsLayer(): HmsHlsLayer?","description":"live.hms.hls_player.HmsHlsPlayerInterface.getCurrentHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-current-hms-hls-layer.html","searchKeys":["getCurrentHmsHlsLayer","abstract fun getCurrentHmsHlsLayer(): HmsHlsLayer?","live.hms.hls_player.HmsHlsPlayerInterface.getCurrentHmsHlsLayer"]},{"name":"abstract fun getHmsHlsLayers(): List","description":"live.hms.hls_player.HmsHlsPlayerInterface.getHmsHlsLayers","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-hms-hls-layers.html","searchKeys":["getHmsHlsLayers","abstract fun getHmsHlsLayers(): List","live.hms.hls_player.HmsHlsPlayerInterface.getHmsHlsLayers"]},{"name":"abstract fun getLastError(): HmsHlsException?","description":"live.hms.hls_player.HmsHlsPlayerInterface.getLastError","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-last-error.html","searchKeys":["getLastError","abstract fun getLastError(): HmsHlsException?","live.hms.hls_player.HmsHlsPlayerInterface.getLastError"]},{"name":"abstract fun pause()","description":"live.hms.hls_player.HmsHlsPlayerInterface.pause","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/pause.html","searchKeys":["pause","abstract fun pause()","live.hms.hls_player.HmsHlsPlayerInterface.pause"]},{"name":"abstract fun play(url: String)","description":"live.hms.hls_player.HmsHlsPlayerInterface.play","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/play.html","searchKeys":["play","abstract fun play(url: String)","live.hms.hls_player.HmsHlsPlayerInterface.play"]},{"name":"abstract fun resume()","description":"live.hms.hls_player.HmsHlsPlayerInterface.resume","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/resume.html","searchKeys":["resume","abstract fun resume()","live.hms.hls_player.HmsHlsPlayerInterface.resume"]},{"name":"abstract fun seekBackward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekBackward","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-backward.html","searchKeys":["seekBackward","abstract fun seekBackward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayerInterface.seekBackward"]},{"name":"abstract fun seekForward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekForward","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-forward.html","searchKeys":["seekForward","abstract fun seekForward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayerInterface.seekForward"]},{"name":"abstract fun seekToLivePosition()","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekToLivePosition","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-to-live-position.html","searchKeys":["seekToLivePosition","abstract fun seekToLivePosition()","live.hms.hls_player.HmsHlsPlayerInterface.seekToLivePosition"]},{"name":"abstract fun setAnalytics(analytics: HMSSDK?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setAnalytics","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-analytics.html","searchKeys":["setAnalytics","abstract fun setAnalytics(analytics: HMSSDK?)","live.hms.hls_player.HmsHlsPlayerInterface.setAnalytics"]},{"name":"abstract fun setHmsHlsLayer(hlsStreamVariant: HmsHlsLayer)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-hms-hls-layer.html","searchKeys":["setHmsHlsLayer","abstract fun setHmsHlsLayer(hlsStreamVariant: HmsHlsLayer)","live.hms.hls_player.HmsHlsPlayerInterface.setHmsHlsLayer"]},{"name":"abstract fun setStatsMonitor(statsListener: PlayerStatsListener?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setStatsMonitor","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-stats-monitor.html","searchKeys":["setStatsMonitor","abstract fun setStatsMonitor(statsListener: PlayerStatsListener?)","live.hms.hls_player.HmsHlsPlayerInterface.setStatsMonitor"]},{"name":"abstract fun stop()","description":"live.hms.hls_player.HmsHlsPlayerInterface.stop","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.hls_player.HmsHlsPlayerInterface.stop"]},{"name":"abstract var volume: Int","description":"live.hms.hls_player.HmsHlsPlayerInterface.volume","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/volume.html","searchKeys":["volume","abstract var volume: Int","live.hms.hls_player.HmsHlsPlayerInterface.volume"]},{"name":"buffering","description":"live.hms.hls_player.HmsHlsPlaybackState.buffering","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/buffering/index.html","searchKeys":["buffering","buffering","live.hms.hls_player.HmsHlsPlaybackState.buffering"]},{"name":"class HlsMetadataHandler(val exoPlayer: ExoPlayer, val listener: (HmsHlsCue) -> Unit)","description":"live.hms.hls_player.HlsMetadataHandler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/index.html","searchKeys":["HlsMetadataHandler","class HlsMetadataHandler(val exoPlayer: ExoPlayer, val listener: (HmsHlsCue) -> Unit)","live.hms.hls_player.HlsMetadataHandler"]},{"name":"class HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null) : HmsHlsPlayerInterface","description":"live.hms.hls_player.HmsHlsPlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/index.html","searchKeys":["HmsHlsPlayer","class HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null) : HmsHlsPlayerInterface","live.hms.hls_player.HmsHlsPlayer"]},{"name":"class MetadataMatcher","description":"live.hms.hls_player.MetadataMatcher","location":"hls-player/live.hms.hls_player/-metadata-matcher/index.html","searchKeys":["MetadataMatcher","class MetadataMatcher","live.hms.hls_player.MetadataMatcher"]},{"name":"const val TAG: String","description":"live.hms.hls_player.HlsMetadataHandler.Companion.TAG","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.hls_player.HlsMetadataHandler.Companion.TAG"]},{"name":"data class HmsHlsCue(val startDate: Date, val endDate: Date?, val payloadval: String?, val id: String? = null)","description":"live.hms.hls_player.HmsHlsCue","location":"hls-player/live.hms.hls_player/-hms-hls-cue/index.html","searchKeys":["HmsHlsCue","data class HmsHlsCue(val startDate: Date, val endDate: Date?, val payloadval: String?, val id: String? = null)","live.hms.hls_player.HmsHlsCue"]},{"name":"data class HmsHlsException(val error: PlaybackException)","description":"live.hms.hls_player.HmsHlsException","location":"hls-player/live.hms.hls_player/-hms-hls-exception/index.html","searchKeys":["HmsHlsException","data class HmsHlsException(val error: PlaybackException)","live.hms.hls_player.HmsHlsException"]},{"name":"data class LayerInfo : HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/index.html","searchKeys":["LayerInfo","data class LayerInfo : HmsHlsLayer","live.hms.hls_player.HmsHlsLayer.LayerInfo"]},{"name":"data class LocalMetaDataModel(val payload: String, val duration: Long, var startTime: Long = 0, var id: String? = null)","description":"live.hms.hls_player.LocalMetaDataModel","location":"hls-player/live.hms.hls_player/-local-meta-data-model/index.html","searchKeys":["LocalMetaDataModel","data class LocalMetaDataModel(val payload: String, val duration: Long, var startTime: Long = 0, var id: String? = null)","live.hms.hls_player.LocalMetaDataModel"]},{"name":"enum HmsHlsPlaybackState : Enum ","description":"live.hms.hls_player.HmsHlsPlaybackState","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/index.html","searchKeys":["HmsHlsPlaybackState","enum HmsHlsPlaybackState : Enum ","live.hms.hls_player.HmsHlsPlaybackState"]},{"name":"failed","description":"live.hms.hls_player.HmsHlsPlaybackState.failed","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/failed/index.html","searchKeys":["failed","failed","live.hms.hls_player.HmsHlsPlaybackState.failed"]},{"name":"fun HlsMetadataHandler(exoPlayer: ExoPlayer, listener: (HmsHlsCue) -> Unit)","description":"live.hms.hls_player.HlsMetadataHandler.HlsMetadataHandler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-hls-metadata-handler.html","searchKeys":["HlsMetadataHandler","fun HlsMetadataHandler(exoPlayer: ExoPlayer, listener: (HmsHlsCue) -> Unit)","live.hms.hls_player.HlsMetadataHandler.HlsMetadataHandler"]},{"name":"fun HmsHlsCue(startDate: Date, endDate: Date?, payloadval: String?, id: String? = null)","description":"live.hms.hls_player.HmsHlsCue.HmsHlsCue","location":"hls-player/live.hms.hls_player/-hms-hls-cue/-hms-hls-cue.html","searchKeys":["HmsHlsCue","fun HmsHlsCue(startDate: Date, endDate: Date?, payloadval: String?, id: String? = null)","live.hms.hls_player.HmsHlsCue.HmsHlsCue"]},{"name":"fun HmsHlsException(error: PlaybackException)","description":"live.hms.hls_player.HmsHlsException.HmsHlsException","location":"hls-player/live.hms.hls_player/-hms-hls-exception/-hms-hls-exception.html","searchKeys":["HmsHlsException","fun HmsHlsException(error: PlaybackException)","live.hms.hls_player.HmsHlsException.HmsHlsException"]},{"name":"fun HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null)","description":"live.hms.hls_player.HmsHlsPlayer.HmsHlsPlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/-hms-hls-player.html","searchKeys":["HmsHlsPlayer","fun HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null)","live.hms.hls_player.HmsHlsPlayer.HmsHlsPlayer"]},{"name":"fun LocalMetaDataModel(payload: String, duration: Long, startTime: Long = 0, id: String? = null)","description":"live.hms.hls_player.LocalMetaDataModel.LocalMetaDataModel","location":"hls-player/live.hms.hls_player/-local-meta-data-model/-local-meta-data-model.html","searchKeys":["LocalMetaDataModel","fun LocalMetaDataModel(payload: String, duration: Long, startTime: Long = 0, id: String? = null)","live.hms.hls_player.LocalMetaDataModel.LocalMetaDataModel"]},{"name":"fun MetadataMatcher()","description":"live.hms.hls_player.MetadataMatcher.MetadataMatcher","location":"hls-player/live.hms.hls_player/-metadata-matcher/-metadata-matcher.html","searchKeys":["MetadataMatcher","fun MetadataMatcher()","live.hms.hls_player.MetadataMatcher.MetadataMatcher"]},{"name":"fun areClosedCaptionsSupported(): Boolean","description":"live.hms.hls_player.HmsHlsPlayer.areClosedCaptionsSupported","location":"hls-player/live.hms.hls_player/-hms-hls-player/are-closed-captions-supported.html","searchKeys":["areClosedCaptionsSupported","fun areClosedCaptionsSupported(): Boolean","live.hms.hls_player.HmsHlsPlayer.areClosedCaptionsSupported"]},{"name":"fun getNativePlayer(): ExoPlayer","description":"live.hms.hls_player.HmsHlsPlayer.getNativePlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-native-player.html","searchKeys":["getNativePlayer","fun getNativePlayer(): ExoPlayer","live.hms.hls_player.HmsHlsPlayer.getNativePlayer"]},{"name":"fun mute(mute: Boolean)","description":"live.hms.hls_player.HmsHlsPlayer.mute","location":"hls-player/live.hms.hls_player/-hms-hls-player/mute.html","searchKeys":["mute","fun mute(mute: Boolean)","live.hms.hls_player.HmsHlsPlayer.mute"]},{"name":"fun sendError(hmsError: HmsHlsException)","description":"live.hms.hls_player.HmsHlsPlayer.sendError","location":"hls-player/live.hms.hls_player/-hms-hls-player/send-error.html","searchKeys":["sendError","fun sendError(hmsError: HmsHlsException)","live.hms.hls_player.HmsHlsPlayer.sendError"]},{"name":"fun start()","description":"live.hms.hls_player.HlsMetadataHandler.start","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/start.html","searchKeys":["start","fun start()","live.hms.hls_player.HlsMetadataHandler.start"]},{"name":"fun stop()","description":"live.hms.hls_player.HlsMetadataHandler.stop","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/stop.html","searchKeys":["stop","fun stop()","live.hms.hls_player.HlsMetadataHandler.stop"]},{"name":"fun valueOf(value: String): HmsHlsPlaybackState","description":"live.hms.hls_player.HmsHlsPlaybackState.valueOf","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsHlsPlaybackState","live.hms.hls_player.HmsHlsPlaybackState.valueOf"]},{"name":"fun values(): Array","description":"live.hms.hls_player.HmsHlsPlaybackState.values","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/values.html","searchKeys":["values","fun values(): Array","live.hms.hls_player.HmsHlsPlaybackState.values"]},{"name":"interface HmsHlsPlaybackEvents","description":"live.hms.hls_player.HmsHlsPlaybackEvents","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/index.html","searchKeys":["HmsHlsPlaybackEvents","interface HmsHlsPlaybackEvents","live.hms.hls_player.HmsHlsPlaybackEvents"]},{"name":"interface HmsHlsPlayerInterface","description":"live.hms.hls_player.HmsHlsPlayerInterface","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/index.html","searchKeys":["HmsHlsPlayerInterface","interface HmsHlsPlayerInterface","live.hms.hls_player.HmsHlsPlayerInterface"]},{"name":"object AUTO : HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer.AUTO","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-a-u-t-o/index.html","searchKeys":["AUTO","object AUTO : HmsHlsLayer","live.hms.hls_player.HmsHlsLayer.AUTO"]},{"name":"object Companion","description":"live.hms.hls_player.HlsMetadataHandler.Companion","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.hls_player.HlsMetadataHandler.Companion"]},{"name":"open fun onCue(cue: HmsHlsCue)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onCue","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-cue.html","searchKeys":["onCue","open fun onCue(cue: HmsHlsCue)","live.hms.hls_player.HmsHlsPlaybackEvents.onCue"]},{"name":"open fun onPlaybackFailure(error: HmsHlsException)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackFailure","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-playback-failure.html","searchKeys":["onPlaybackFailure","open fun onPlaybackFailure(error: HmsHlsException)","live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackFailure"]},{"name":"open fun onPlaybackStateChanged(state: HmsHlsPlaybackState)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackStateChanged","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-playback-state-changed.html","searchKeys":["onPlaybackStateChanged","open fun onPlaybackStateChanged(state: HmsHlsPlaybackState)","live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackStateChanged"]},{"name":"open override fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","description":"live.hms.hls_player.HmsHlsPlayer.addPlayerEventListener","location":"hls-player/live.hms.hls_player/-hms-hls-player/add-player-event-listener.html","searchKeys":["addPlayerEventListener","open override fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","live.hms.hls_player.HmsHlsPlayer.addPlayerEventListener"]},{"name":"open override fun getCurrentHmsHlsLayer(): HmsHlsLayer?","description":"live.hms.hls_player.HmsHlsPlayer.getCurrentHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-current-hms-hls-layer.html","searchKeys":["getCurrentHmsHlsLayer","open override fun getCurrentHmsHlsLayer(): HmsHlsLayer?","live.hms.hls_player.HmsHlsPlayer.getCurrentHmsHlsLayer"]},{"name":"open override fun getHmsHlsLayers(): List","description":"live.hms.hls_player.HmsHlsPlayer.getHmsHlsLayers","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-hms-hls-layers.html","searchKeys":["getHmsHlsLayers","open override fun getHmsHlsLayers(): List","live.hms.hls_player.HmsHlsPlayer.getHmsHlsLayers"]},{"name":"open override fun getLastError(): HmsHlsException?","description":"live.hms.hls_player.HmsHlsPlayer.getLastError","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-last-error.html","searchKeys":["getLastError","open override fun getLastError(): HmsHlsException?","live.hms.hls_player.HmsHlsPlayer.getLastError"]},{"name":"open override fun pause()","description":"live.hms.hls_player.HmsHlsPlayer.pause","location":"hls-player/live.hms.hls_player/-hms-hls-player/pause.html","searchKeys":["pause","open override fun pause()","live.hms.hls_player.HmsHlsPlayer.pause"]},{"name":"open override fun play(url: String)","description":"live.hms.hls_player.HmsHlsPlayer.play","location":"hls-player/live.hms.hls_player/-hms-hls-player/play.html","searchKeys":["play","open override fun play(url: String)","live.hms.hls_player.HmsHlsPlayer.play"]},{"name":"open override fun resume()","description":"live.hms.hls_player.HmsHlsPlayer.resume","location":"hls-player/live.hms.hls_player/-hms-hls-player/resume.html","searchKeys":["resume","open override fun resume()","live.hms.hls_player.HmsHlsPlayer.resume"]},{"name":"open override fun seekBackward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayer.seekBackward","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-backward.html","searchKeys":["seekBackward","open override fun seekBackward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayer.seekBackward"]},{"name":"open override fun seekForward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayer.seekForward","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-forward.html","searchKeys":["seekForward","open override fun seekForward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayer.seekForward"]},{"name":"open override fun seekToLivePosition()","description":"live.hms.hls_player.HmsHlsPlayer.seekToLivePosition","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-to-live-position.html","searchKeys":["seekToLivePosition","open override fun seekToLivePosition()","live.hms.hls_player.HmsHlsPlayer.seekToLivePosition"]},{"name":"open override fun setAnalytics(analytics: HMSSDK?)","description":"live.hms.hls_player.HmsHlsPlayer.setAnalytics","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-analytics.html","searchKeys":["setAnalytics","open override fun setAnalytics(analytics: HMSSDK?)","live.hms.hls_player.HmsHlsPlayer.setAnalytics"]},{"name":"open override fun setHmsHlsLayer(layer: HmsHlsLayer)","description":"live.hms.hls_player.HmsHlsPlayer.setHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-hms-hls-layer.html","searchKeys":["setHmsHlsLayer","open override fun setHmsHlsLayer(layer: HmsHlsLayer)","live.hms.hls_player.HmsHlsPlayer.setHmsHlsLayer"]},{"name":"open override fun setStatsMonitor(statsListener: PlayerStatsListener?)","description":"live.hms.hls_player.HmsHlsPlayer.setStatsMonitor","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-stats-monitor.html","searchKeys":["setStatsMonitor","open override fun setStatsMonitor(statsListener: PlayerStatsListener?)","live.hms.hls_player.HmsHlsPlayer.setStatsMonitor"]},{"name":"open override fun stop()","description":"live.hms.hls_player.HmsHlsPlayer.stop","location":"hls-player/live.hms.hls_player/-hms-hls-player/stop.html","searchKeys":["stop","open override fun stop()","live.hms.hls_player.HmsHlsPlayer.stop"]},{"name":"open override var volume: Int","description":"live.hms.hls_player.HmsHlsPlayer.volume","location":"hls-player/live.hms.hls_player/-hms-hls-player/volume.html","searchKeys":["volume","open override var volume: Int","live.hms.hls_player.HmsHlsPlayer.volume"]},{"name":"paused","description":"live.hms.hls_player.HmsHlsPlaybackState.paused","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/paused/index.html","searchKeys":["paused","paused","live.hms.hls_player.HmsHlsPlaybackState.paused"]},{"name":"playing","description":"live.hms.hls_player.HmsHlsPlaybackState.playing","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/playing/index.html","searchKeys":["playing","playing","live.hms.hls_player.HmsHlsPlaybackState.playing"]},{"name":"sealed class HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-layer/index.html","searchKeys":["HmsHlsLayer","sealed class HmsHlsLayer","live.hms.hls_player.HmsHlsLayer"]},{"name":"stopped","description":"live.hms.hls_player.HmsHlsPlaybackState.stopped","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/stopped/index.html","searchKeys":["stopped","stopped","live.hms.hls_player.HmsHlsPlaybackState.stopped"]},{"name":"unknown","description":"live.hms.hls_player.HmsHlsPlaybackState.unknown","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/unknown/index.html","searchKeys":["unknown","unknown","live.hms.hls_player.HmsHlsPlaybackState.unknown"]},{"name":"val TAG: String","description":"live.hms.hls_player.HmsHlsPlayer.TAG","location":"hls-player/live.hms.hls_player/-hms-hls-player/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.hls_player.HmsHlsPlayer.TAG"]},{"name":"val bitrate: Int","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo.bitrate","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/bitrate.html","searchKeys":["bitrate","val bitrate: Int","live.hms.hls_player.HmsHlsLayer.LayerInfo.bitrate"]},{"name":"val duration: Long","description":"live.hms.hls_player.LocalMetaDataModel.duration","location":"hls-player/live.hms.hls_player/-local-meta-data-model/duration.html","searchKeys":["duration","val duration: Long","live.hms.hls_player.LocalMetaDataModel.duration"]},{"name":"val endDate: Date?","description":"live.hms.hls_player.HmsHlsCue.endDate","location":"hls-player/live.hms.hls_player/-hms-hls-cue/end-date.html","searchKeys":["endDate","val endDate: Date?","live.hms.hls_player.HmsHlsCue.endDate"]},{"name":"val error: PlaybackException","description":"live.hms.hls_player.HmsHlsException.error","location":"hls-player/live.hms.hls_player/-hms-hls-exception/error.html","searchKeys":["error","val error: PlaybackException","live.hms.hls_player.HmsHlsException.error"]},{"name":"val exoPlayer: ExoPlayer","description":"live.hms.hls_player.HlsMetadataHandler.exoPlayer","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/exo-player.html","searchKeys":["exoPlayer","val exoPlayer: ExoPlayer","live.hms.hls_player.HlsMetadataHandler.exoPlayer"]},{"name":"val id: String? = null","description":"live.hms.hls_player.HmsHlsCue.id","location":"hls-player/live.hms.hls_player/-hms-hls-cue/id.html","searchKeys":["id","val id: String? = null","live.hms.hls_player.HmsHlsCue.id"]},{"name":"val listener: (HmsHlsCue) -> Unit","description":"live.hms.hls_player.HlsMetadataHandler.listener","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/listener.html","searchKeys":["listener","val listener: (HmsHlsCue) -> Unit","live.hms.hls_player.HlsMetadataHandler.listener"]},{"name":"val pattern: Pattern","description":"live.hms.hls_player.MetadataMatcher.pattern","location":"hls-player/live.hms.hls_player/-metadata-matcher/pattern.html","searchKeys":["pattern","val pattern: Pattern","live.hms.hls_player.MetadataMatcher.pattern"]},{"name":"val payload: String","description":"live.hms.hls_player.LocalMetaDataModel.payload","location":"hls-player/live.hms.hls_player/-local-meta-data-model/payload.html","searchKeys":["payload","val payload: String","live.hms.hls_player.LocalMetaDataModel.payload"]},{"name":"val payloadval: String?","description":"live.hms.hls_player.HmsHlsCue.payloadval","location":"hls-player/live.hms.hls_player/-hms-hls-cue/payloadval.html","searchKeys":["payloadval","val payloadval: String?","live.hms.hls_player.HmsHlsCue.payloadval"]},{"name":"val resolution: HMSVideoResolution","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo.resolution","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution","live.hms.hls_player.HmsHlsLayer.LayerInfo.resolution"]},{"name":"val startDate: Date","description":"live.hms.hls_player.HmsHlsCue.startDate","location":"hls-player/live.hms.hls_player/-hms-hls-cue/start-date.html","searchKeys":["startDate","val startDate: Date","live.hms.hls_player.HmsHlsCue.startDate"]},{"name":"var MILLISECONDS_BEHIND_LIVE_IS_PAUSED: Long","description":"live.hms.hls_player.HmsHlsPlayer.MILLISECONDS_BEHIND_LIVE_IS_PAUSED","location":"hls-player/live.hms.hls_player/-hms-hls-player/-m-i-l-l-i-s-e-c-o-n-d-s_-b-e-h-i-n-d_-l-i-v-e_-i-s_-p-a-u-s-e-d.html","searchKeys":["MILLISECONDS_BEHIND_LIVE_IS_PAUSED","var MILLISECONDS_BEHIND_LIVE_IS_PAUSED: Long","live.hms.hls_player.HmsHlsPlayer.MILLISECONDS_BEHIND_LIVE_IS_PAUSED"]},{"name":"var handler: Handler? = null","description":"live.hms.hls_player.HlsMetadataHandler.handler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/handler.html","searchKeys":["handler","var handler: Handler? = null","live.hms.hls_player.HlsMetadataHandler.handler"]},{"name":"var id: String? = null","description":"live.hms.hls_player.LocalMetaDataModel.id","location":"hls-player/live.hms.hls_player/-local-meta-data-model/id.html","searchKeys":["id","var id: String? = null","live.hms.hls_player.LocalMetaDataModel.id"]},{"name":"var startTime: Long = 0","description":"live.hms.hls_player.LocalMetaDataModel.startTime","location":"hls-player/live.hms.hls_player/-local-meta-data-model/start-time.html","searchKeys":["startTime","var startTime: Long = 0","live.hms.hls_player.LocalMetaDataModel.startTime"]}] \ No newline at end of file +[{"name":"class NativeLib","description":"live.hms.hms_noise_cancellation_android.NativeLib","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/index.html","searchKeys":["NativeLib","class NativeLib","live.hms.hms_noise_cancellation_android.NativeLib"]},{"name":"external fun stringFromJNI(): String","description":"live.hms.hms_noise_cancellation_android.NativeLib.stringFromJNI","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/string-from-j-n-i.html","searchKeys":["stringFromJNI","external fun stringFromJNI(): String","live.hms.hms_noise_cancellation_android.NativeLib.stringFromJNI"]},{"name":"fun NativeLib()","description":"live.hms.hms_noise_cancellation_android.NativeLib.NativeLib","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/-native-lib.html","searchKeys":["NativeLib","fun NativeLib()","live.hms.hms_noise_cancellation_android.NativeLib.NativeLib"]},{"name":"object Companion","description":"live.hms.hms_noise_cancellation_android.NativeLib.Companion","location":"hms-noise-cancellation-android/live.hms.hms_noise_cancellation_android/-native-lib/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.hms_noise_cancellation_android.NativeLib.Companion"]},{"name":"abstract fun onResolutionChange(width: Int, height: Int)","description":"live.hms.videoview.ResolutionChangeListener.onResolutionChange","location":"videoview/live.hms.videoview/-resolution-change-listener/on-resolution-change.html","searchKeys":["onResolutionChange","abstract fun onResolutionChange(width: Int, height: Int)","live.hms.videoview.ResolutionChangeListener.onResolutionChange"]},{"name":"class HMSTextureRenderer(surfaceTexture: SurfaceTexture)","description":"live.hms.videoview.textureview.HMSTextureRenderer","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/index.html","searchKeys":["HMSTextureRenderer","class HMSTextureRenderer(surfaceTexture: SurfaceTexture)","live.hms.videoview.textureview.HMSTextureRenderer"]},{"name":"class HMSVideoView : SurfaceViewRenderer","description":"live.hms.videoview.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/index.html","searchKeys":["HMSVideoView","class HMSVideoView : SurfaceViewRenderer","live.hms.videoview.HMSVideoView"]},{"name":"fun HMSTextureRenderer(surfaceTexture: SurfaceTexture)","description":"live.hms.videoview.textureview.HMSTextureRenderer.HMSTextureRenderer","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/-h-m-s-texture-renderer.html","searchKeys":["HMSTextureRenderer","fun HMSTextureRenderer(surfaceTexture: SurfaceTexture)","live.hms.videoview.textureview.HMSTextureRenderer.HMSTextureRenderer"]},{"name":"fun HMSVideoView(context: Context)","description":"live.hms.videoview.HMSVideoView.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/-h-m-s-video-view.html","searchKeys":["HMSVideoView","fun HMSVideoView(context: Context)","live.hms.videoview.HMSVideoView.HMSVideoView"]},{"name":"fun HMSVideoView(context: Context, attributeSet: AttributeSet)","description":"live.hms.videoview.HMSVideoView.HMSVideoView","location":"videoview/live.hms.videoview/-h-m-s-video-view/-h-m-s-video-view.html","searchKeys":["HMSVideoView","fun HMSVideoView(context: Context, attributeSet: AttributeSet)","live.hms.videoview.HMSVideoView.HMSVideoView"]},{"name":"fun addTrack(track: HMSVideoTrack)","description":"live.hms.videoview.HMSVideoView.addTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack)","live.hms.videoview.HMSVideoView.addTrack"]},{"name":"fun addTrack(track: HMSVideoTrack)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack)","live.hms.videoview.textureview.HMSTextureRenderer.addTrack"]},{"name":"fun addTrack(track: HMSVideoTrack, enableBlackFrame: Boolean = false)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-track.html","searchKeys":["addTrack","fun addTrack(track: HMSVideoTrack, enableBlackFrame: Boolean = false)","live.hms.videoview.textureview.HMSTextureRenderer.addTrack"]},{"name":"fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","description":"live.hms.videoview.HMSVideoView.addVideoViewStateChangeListener","location":"videoview/live.hms.videoview/-h-m-s-video-view/add-video-view-state-change-listener.html","searchKeys":["addVideoViewStateChangeListener","fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","live.hms.videoview.HMSVideoView.addVideoViewStateChangeListener"]},{"name":"fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","description":"live.hms.videoview.textureview.HMSTextureRenderer.addVideoViewStateChangeListener","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/add-video-view-state-change-listener.html","searchKeys":["addVideoViewStateChangeListener","fun addVideoViewStateChangeListener(videoViewStateChangeListener: VideoViewStateChangeListener?)","live.hms.videoview.textureview.HMSTextureRenderer.addVideoViewStateChangeListener"]},{"name":"fun captureBitmap(onBitmap: (Bitmap?) -> Unit, scale: Float = 1.0f)","description":"live.hms.videoview.HMSVideoView.captureBitmap","location":"videoview/live.hms.videoview/-h-m-s-video-view/capture-bitmap.html","searchKeys":["captureBitmap","fun captureBitmap(onBitmap: (Bitmap?) -> Unit, scale: Float = 1.0f)","live.hms.videoview.HMSVideoView.captureBitmap"]},{"name":"fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","description":"live.hms.videoview.HMSVideoView.disableAutoSimulcastLayerSelect","location":"videoview/live.hms.videoview/-h-m-s-video-view/disable-auto-simulcast-layer-select.html","searchKeys":["disableAutoSimulcastLayerSelect","fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","live.hms.videoview.HMSVideoView.disableAutoSimulcastLayerSelect"]},{"name":"fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","description":"live.hms.videoview.textureview.HMSTextureRenderer.disableAutoSimulcastLayerSelect","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/disable-auto-simulcast-layer-select.html","searchKeys":["disableAutoSimulcastLayerSelect","fun disableAutoSimulcastLayerSelect(isDisabled: Boolean)","live.hms.videoview.textureview.HMSTextureRenderer.disableAutoSimulcastLayerSelect"]},{"name":"fun displayResolution(width: Int, height: Int)","description":"live.hms.videoview.textureview.HMSTextureRenderer.displayResolution","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/display-resolution.html","searchKeys":["displayResolution","fun displayResolution(width: Int, height: Int)","live.hms.videoview.textureview.HMSTextureRenderer.displayResolution"]},{"name":"fun enableZoomAndPan(isEnabled: Boolean)","description":"live.hms.videoview.HMSVideoView.enableZoomAndPan","location":"videoview/live.hms.videoview/-h-m-s-video-view/enable-zoom-and-pan.html","searchKeys":["enableZoomAndPan","fun enableZoomAndPan(isEnabled: Boolean)","live.hms.videoview.HMSVideoView.enableZoomAndPan"]},{"name":"fun getTrack(): HMSVideoTrack?","description":"live.hms.videoview.HMSVideoView.getTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/get-track.html","searchKeys":["getTrack","fun getTrack(): HMSVideoTrack?","live.hms.videoview.HMSVideoView.getTrack"]},{"name":"fun getTrack(): HMSVideoTrack?","description":"live.hms.videoview.textureview.HMSTextureRenderer.getTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/get-track.html","searchKeys":["getTrack","fun getTrack(): HMSVideoTrack?","live.hms.videoview.textureview.HMSTextureRenderer.getTrack"]},{"name":"fun removeTrack()","description":"live.hms.videoview.HMSVideoView.removeTrack","location":"videoview/live.hms.videoview/-h-m-s-video-view/remove-track.html","searchKeys":["removeTrack","fun removeTrack()","live.hms.videoview.HMSVideoView.removeTrack"]},{"name":"fun removeTrack()","description":"live.hms.videoview.textureview.HMSTextureRenderer.removeTrack","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/remove-track.html","searchKeys":["removeTrack","fun removeTrack()","live.hms.videoview.textureview.HMSTextureRenderer.removeTrack"]},{"name":"interface ResolutionChangeListener","description":"live.hms.videoview.ResolutionChangeListener","location":"videoview/live.hms.videoview/-resolution-change-listener/index.html","searchKeys":["ResolutionChangeListener","interface ResolutionChangeListener","live.hms.videoview.ResolutionChangeListener"]},{"name":"interface VideoViewStateChangeListener","description":"live.hms.videoview.VideoViewStateChangeListener","location":"videoview/live.hms.videoview/-video-view-state-change-listener/index.html","searchKeys":["VideoViewStateChangeListener","interface VideoViewStateChangeListener","live.hms.videoview.VideoViewStateChangeListener"]},{"name":"open fun onFirstFrameRendered()","description":"live.hms.videoview.VideoViewStateChangeListener.onFirstFrameRendered","location":"videoview/live.hms.videoview/-video-view-state-change-listener/on-first-frame-rendered.html","searchKeys":["onFirstFrameRendered","open fun onFirstFrameRendered()","live.hms.videoview.VideoViewStateChangeListener.onFirstFrameRendered"]},{"name":"open fun onResolutionChange(newWidth: Int, newHeight: Int)","description":"live.hms.videoview.VideoViewStateChangeListener.onResolutionChange","location":"videoview/live.hms.videoview/-video-view-state-change-listener/on-resolution-change.html","searchKeys":["onResolutionChange","open fun onResolutionChange(newWidth: Int, newHeight: Int)","live.hms.videoview.VideoViewStateChangeListener.onResolutionChange"]},{"name":"open override fun onTouchEvent(event: MotionEvent): Boolean","description":"live.hms.videoview.HMSVideoView.onTouchEvent","location":"videoview/live.hms.videoview/-h-m-s-video-view/on-touch-event.html","searchKeys":["onTouchEvent","open override fun onTouchEvent(event: MotionEvent): Boolean","live.hms.videoview.HMSVideoView.onTouchEvent"]},{"name":"open override fun setScalingType(scalingType: RendererCommon.ScalingType)","description":"live.hms.videoview.HMSVideoView.setScalingType","location":"videoview/live.hms.videoview/-h-m-s-video-view/set-scaling-type.html","searchKeys":["setScalingType","open override fun setScalingType(scalingType: RendererCommon.ScalingType)","live.hms.videoview.HMSVideoView.setScalingType"]},{"name":"val TAG: String","description":"live.hms.videoview.textureview.HMSTextureRenderer.TAG","location":"videoview/live.hms.videoview.textureview/-h-m-s-texture-renderer/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.videoview.textureview.HMSTextureRenderer.TAG"]},{"name":"ANALYZE","description":"live.hms.video.plugin.video.HMSVideoPluginType.ANALYZE","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/-a-n-a-l-y-z-e/index.html","searchKeys":["ANALYZE","ANALYZE","live.hms.video.plugin.video.HMSVideoPluginType.ANALYZE"]},{"name":"ANDROID_NATIVE","description":"live.hms.video.events.AgentType.ANDROID_NATIVE","location":"lib/live.hms.video.events/-agent-type/-a-n-d-r-o-i-d_-n-a-t-i-v-e/index.html","searchKeys":["ANDROID_NATIVE","ANDROID_NATIVE","live.hms.video.events.AgentType.ANDROID_NATIVE"]},{"name":"AUDIO","description":"live.hms.video.media.tracks.HMSTrackType.AUDIO","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-a-u-d-i-o/index.html","searchKeys":["AUDIO","AUDIO","live.hms.video.media.tracks.HMSTrackType.AUDIO"]},{"name":"AUDIOFOCUS_GAIN","description":"live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_GAIN","location":"lib/live.hms.video.audio/-audio-change-event/-a-u-d-i-o-f-o-c-u-s_-g-a-i-n/index.html","searchKeys":["AUDIOFOCUS_GAIN","AUDIOFOCUS_GAIN","live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_GAIN"]},{"name":"AUDIOFOCUS_LOSS_TRANSIENT","description":"live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_LOSS_TRANSIENT","location":"lib/live.hms.video.audio/-audio-change-event/-a-u-d-i-o-f-o-c-u-s_-l-o-s-s_-t-r-a-n-s-i-e-n-t/index.html","searchKeys":["AUDIOFOCUS_LOSS_TRANSIENT","AUDIOFOCUS_LOSS_TRANSIENT","live.hms.video.audio.AudioChangeEvent.AUDIOFOCUS_LOSS_TRANSIENT"]},{"name":"AUTO","description":"live.hms.video.sdk.models.enums.HMSMode.AUTO","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-a-u-t-o/index.html","searchKeys":["AUTO","AUTO","live.hms.video.sdk.models.enums.HMSMode.AUTO"]},{"name":"AUTOMATIC","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.AUTOMATIC","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-a-u-t-o-m-a-t-i-c/index.html","searchKeys":["AUTOMATIC","AUTOMATIC","live.hms.video.audio.HMSAudioManager.AudioDevice.AUTOMATIC"]},{"name":"BACK","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.BACK","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/-b-a-c-k/index.html","searchKeys":["BACK","BACK","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.BACK"]},{"name":"BALANCED","description":"live.hms.video.sdk.models.DegradationPreference.BALANCED","location":"lib/live.hms.video.sdk.models/-degradation-preference/-b-a-l-a-n-c-e-d/index.html","searchKeys":["BALANCED","BALANCED","live.hms.video.sdk.models.DegradationPreference.BALANCED"]},{"name":"BANDWIDTH","description":"live.hms.video.connection.degredation.QualityLimitationReason.BANDWIDTH","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-b-a-n-d-w-i-d-t-h/index.html","searchKeys":["BANDWIDTH","BANDWIDTH","live.hms.video.connection.degredation.QualityLimitationReason.BANDWIDTH"]},{"name":"BECAME_DOMINANT_SPEAKER","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.BECAME_DOMINANT_SPEAKER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-b-e-c-a-m-e_-d-o-m-i-n-a-n-t_-s-p-e-a-k-e-r/index.html","searchKeys":["BECAME_DOMINANT_SPEAKER","BECAME_DOMINANT_SPEAKER","live.hms.video.sdk.models.enums.HMSPeerUpdate.BECAME_DOMINANT_SPEAKER"]},{"name":"BLUETOOTH","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.BLUETOOTH","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-b-l-u-e-t-o-o-t-h/index.html","searchKeys":["BLUETOOTH","BLUETOOTH","live.hms.video.audio.HMSAudioManager.AudioDevice.BLUETOOTH"]},{"name":"BLUETOOTH","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.BLUETOOTH","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-b-l-u-e-t-o-o-t-h/index.html","searchKeys":["BLUETOOTH","BLUETOOTH","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.BLUETOOTH"]},{"name":"BLUR_BACKGROUND","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.BLUR_BACKGROUND","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-b-l-u-r_-b-a-c-k-g-r-o-u-n-d/index.html","searchKeys":["BLUR_BACKGROUND","BLUR_BACKGROUND","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.BLUR_BACKGROUND"]},{"name":"BROADCAST","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.BROADCAST","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-b-r-o-a-d-c-a-s-t/index.html","searchKeys":["BROADCAST","BROADCAST","live.hms.video.sdk.models.enums.HMSMessageRecipientType.BROADCAST"]},{"name":"BROWSER_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.BROWSER_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-b-r-o-w-s-e-r_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["BROWSER_RECORDING_STATE_UPDATED","BROWSER_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.BROWSER_RECORDING_STATE_UPDATED"]},{"name":"CAPTION","description":"live.hms.video.sdk.models.TranscriptionsMode.CAPTION","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/-c-a-p-t-i-o-n/index.html","searchKeys":["CAPTION","CAPTION","live.hms.video.sdk.models.TranscriptionsMode.CAPTION"]},{"name":"COMPLETED","description":"live.hms.video.diagnostics.models.ConnectivityState.COMPLETED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-c-o-m-p-l-e-t-e-d/index.html","searchKeys":["COMPLETED","COMPLETED","live.hms.video.diagnostics.models.ConnectivityState.COMPLETED"]},{"name":"CPU","description":"live.hms.video.connection.degredation.QualityLimitationReason.CPU","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-c-p-u/index.html","searchKeys":["CPU","CPU","live.hms.video.connection.degredation.QualityLimitationReason.CPU"]},{"name":"CREATED","description":"live.hms.video.polls.models.HmsPollState.CREATED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-c-r-e-a-t-e-d/index.html","searchKeys":["CREATED","CREATED","live.hms.video.polls.models.HmsPollState.CREATED"]},{"name":"DEBUG","description":"live.hms.video.utils.HMSLogger.LogLevel.DEBUG","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG","live.hms.video.utils.HMSLogger.LogLevel.DEBUG"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-e-x-c-l-u-s-i-v-e/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_EXCLUSIVE"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-t-r-a-n-s-i-e-n-t/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","DEBUG_AUDIOFOCUS_GAIN_TRANSIENT","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT"]},{"name":"DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-g-a-i-n_-t-r-a-n-s-i-e-n-t_-m-a-y_-d-u-c-k/index.html","searchKeys":["DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK"]},{"name":"DEBUG_AUDIOFOCUS_LOSS","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-l-o-s-s/index.html","searchKeys":["DEBUG_AUDIOFOCUS_LOSS","DEBUG_AUDIOFOCUS_LOSS","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS"]},{"name":"DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-a-u-d-i-o-f-o-c-u-s_-l-o-s-s_-t-r-a-n-s-i-e-n-t_-c-a-n_-d-u-c-k/index.html","searchKeys":["DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK","live.hms.video.audio.AudioChangeEvent.DEBUG_AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK"]},{"name":"DEBUG_INVALID","description":"live.hms.video.audio.AudioChangeEvent.DEBUG_INVALID","location":"lib/live.hms.video.audio/-audio-change-event/-d-e-b-u-g_-i-n-v-a-l-i-d/index.html","searchKeys":["DEBUG_INVALID","DEBUG_INVALID","live.hms.video.audio.AudioChangeEvent.DEBUG_INVALID"]},{"name":"DEFAULT","description":"live.hms.video.sdk.models.DegradationPreference.DEFAULT","location":"lib/live.hms.video.sdk.models/-degradation-preference/-d-e-f-a-u-l-t/index.html","searchKeys":["DEFAULT","DEFAULT","live.hms.video.sdk.models.DegradationPreference.DEFAULT"]},{"name":"DISABLED","description":"live.hms.video.sdk.models.DegradationPreference.DISABLED","location":"lib/live.hms.video.sdk.models/-degradation-preference/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED","live.hms.video.sdk.models.DegradationPreference.DISABLED"]},{"name":"DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","description":"live.hms.video.media.settings.PhoneCallState.DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","location":"lib/live.hms.video.media.settings/-phone-call-state/-d-i-s-a-b-l-e_-m-u-t-e_-o-n_-v-o-i-p_-p-h-o-n-e_-c-a-l-l_-r-i-n-g/index.html","searchKeys":["DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING","live.hms.video.media.settings.PhoneCallState.DISABLE_MUTE_ON_VOIP_PHONE_CALL_RING"]},{"name":"EARPIECE","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.EARPIECE","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-e-a-r-p-i-e-c-e/index.html","searchKeys":["EARPIECE","EARPIECE","live.hms.video.audio.HMSAudioManager.AudioDevice.EARPIECE"]},{"name":"EARPIECE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.EARPIECE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-e-a-r-p-i-e-c-e/index.html","searchKeys":["EARPIECE","EARPIECE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.EARPIECE"]},{"name":"ENABLE_MUTE_ON_PHONE_CALL_RING","description":"live.hms.video.media.settings.PhoneCallState.ENABLE_MUTE_ON_PHONE_CALL_RING","location":"lib/live.hms.video.media.settings/-phone-call-state/-e-n-a-b-l-e_-m-u-t-e_-o-n_-p-h-o-n-e_-c-a-l-l_-r-i-n-g/index.html","searchKeys":["ENABLE_MUTE_ON_PHONE_CALL_RING","ENABLE_MUTE_ON_PHONE_CALL_RING","live.hms.video.media.settings.PhoneCallState.ENABLE_MUTE_ON_PHONE_CALL_RING"]},{"name":"ERROR","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.ERROR","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.ERROR"]},{"name":"ERROR","description":"live.hms.video.utils.HMSLogger.LogLevel.ERROR","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR","live.hms.video.utils.HMSLogger.LogLevel.ERROR"]},{"name":"FAILED","description":"live.hms.video.sdk.models.TranscriptionState.FAILED","location":"lib/live.hms.video.sdk.models/-transcription-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.TranscriptionState.FAILED"]},{"name":"FAILED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.FAILED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.enums.HMSRecordingState.FAILED"]},{"name":"FAILED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.FAILED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-f-a-i-l-e-d/index.html","searchKeys":["FAILED","FAILED","live.hms.video.sdk.models.enums.HMSStreamingState.FAILED"]},{"name":"FLUTTER","description":"live.hms.video.events.AgentType.FLUTTER","location":"lib/live.hms.video.events/-agent-type/-f-l-u-t-t-e-r/index.html","searchKeys":["FLUTTER","FLUTTER","live.hms.video.events.AgentType.FLUTTER"]},{"name":"FRONT","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.FRONT","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/-f-r-o-n-t/index.html","searchKeys":["FRONT","FRONT","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.FRONT"]},{"name":"H264","description":"live.hms.video.media.codec.HMSVideoCodec.H264","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-h264/index.html","searchKeys":["H264","H264","live.hms.video.media.codec.HMSVideoCodec.H264"]},{"name":"HAND_RAISED_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.HAND_RAISED_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-h-a-n-d_-r-a-i-s-e-d_-c-h-a-n-g-e-d/index.html","searchKeys":["HAND_RAISED_CHANGED","HAND_RAISED_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.HAND_RAISED_CHANGED"]},{"name":"HIGH","description":"live.hms.video.media.settings.HMSLayer.HIGH","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-h-i-g-h/index.html","searchKeys":["HIGH","HIGH","live.hms.video.media.settings.HMSLayer.HIGH"]},{"name":"HLS_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-h-l-s_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["HLS_RECORDING_STATE_UPDATED","HLS_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_RECORDING_STATE_UPDATED"]},{"name":"HLS_STREAMING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_STREAMING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-h-l-s_-s-t-r-e-a-m-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["HLS_STREAMING_STATE_UPDATED","HLS_STREAMING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.HLS_STREAMING_STATE_UPDATED"]},{"name":"HMSAUDIOMODEMUSIC","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEMUSIC","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/-h-m-s-a-u-d-i-o-m-o-d-e-m-u-s-i-c/index.html","searchKeys":["HMSAUDIOMODEMUSIC","HMSAUDIOMODEMUSIC","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEMUSIC"]},{"name":"HMSAUDIOMODEVOICE","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEVOICE","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/-h-m-s-a-u-d-i-o-m-o-d-e-v-o-i-c-e/index.html","searchKeys":["HMSAUDIOMODEVOICE","HMSAUDIOMODEVOICE","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.HMSAUDIOMODEVOICE"]},{"name":"ICE_ESTABLISHED","description":"live.hms.video.diagnostics.models.ConnectivityState.ICE_ESTABLISHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-i-c-e_-e-s-t-a-b-l-i-s-h-e-d/index.html","searchKeys":["ICE_ESTABLISHED","ICE_ESTABLISHED","live.hms.video.diagnostics.models.ConnectivityState.ICE_ESTABLISHED"]},{"name":"INFO","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.INFO","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.INFO"]},{"name":"INFO","description":"live.hms.video.utils.HMSLogger.LogLevel.INFO","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO","live.hms.video.utils.HMSLogger.LogLevel.INFO"]},{"name":"INITIALIZED","description":"live.hms.video.sdk.models.TranscriptionState.INITIALIZED","location":"lib/live.hms.video.sdk.models/-transcription-state/-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["INITIALIZED","INITIALIZED","live.hms.video.sdk.models.TranscriptionState.INITIALIZED"]},{"name":"INIT_FETCHED","description":"live.hms.video.diagnostics.models.ConnectivityState.INIT_FETCHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-i-n-i-t_-f-e-t-c-h-e-d/index.html","searchKeys":["INIT_FETCHED","INIT_FETCHED","live.hms.video.diagnostics.models.ConnectivityState.INIT_FETCHED"]},{"name":"JOINED","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.JOINED","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/-j-o-i-n-e-d/index.html","searchKeys":["JOINED","JOINED","live.hms.video.sdk.models.enums.RetrySchedulerState.JOINED"]},{"name":"LIVE","description":"live.hms.video.sdk.models.TranscriptionsMode.LIVE","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/-l-i-v-e/index.html","searchKeys":["LIVE","LIVE","live.hms.video.sdk.models.TranscriptionsMode.LIVE"]},{"name":"LOW","description":"live.hms.video.media.settings.HMSLayer.LOW","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-l-o-w/index.html","searchKeys":["LOW","LOW","live.hms.video.media.settings.HMSLayer.LOW"]},{"name":"MAINTAIN_FRAMERATE","description":"live.hms.video.sdk.models.DegradationPreference.MAINTAIN_FRAMERATE","location":"lib/live.hms.video.sdk.models/-degradation-preference/-m-a-i-n-t-a-i-n_-f-r-a-m-e-r-a-t-e/index.html","searchKeys":["MAINTAIN_FRAMERATE","MAINTAIN_FRAMERATE","live.hms.video.sdk.models.DegradationPreference.MAINTAIN_FRAMERATE"]},{"name":"MAINTAIN_RESOLUTION","description":"live.hms.video.sdk.models.DegradationPreference.MAINTAIN_RESOLUTION","location":"lib/live.hms.video.sdk.models/-degradation-preference/-m-a-i-n-t-a-i-n_-r-e-s-o-l-u-t-i-o-n/index.html","searchKeys":["MAINTAIN_RESOLUTION","MAINTAIN_RESOLUTION","live.hms.video.sdk.models.DegradationPreference.MAINTAIN_RESOLUTION"]},{"name":"MEDIA_CAPTURED","description":"live.hms.video.diagnostics.models.ConnectivityState.MEDIA_CAPTURED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-m-e-d-i-a_-c-a-p-t-u-r-e-d/index.html","searchKeys":["MEDIA_CAPTURED","MEDIA_CAPTURED","live.hms.video.diagnostics.models.ConnectivityState.MEDIA_CAPTURED"]},{"name":"MEDIA_PUBLISHED","description":"live.hms.video.diagnostics.models.ConnectivityState.MEDIA_PUBLISHED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-m-e-d-i-a_-p-u-b-l-i-s-h-e-d/index.html","searchKeys":["MEDIA_PUBLISHED","MEDIA_PUBLISHED","live.hms.video.diagnostics.models.ConnectivityState.MEDIA_PUBLISHED"]},{"name":"MEDIUM","description":"live.hms.video.media.settings.HMSLayer.MEDIUM","location":"lib/live.hms.video.media.settings/-h-m-s-layer/-m-e-d-i-u-m/index.html","searchKeys":["MEDIUM","MEDIUM","live.hms.video.media.settings.HMSLayer.MEDIUM"]},{"name":"METADATA_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.METADATA_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-m-e-t-a-d-a-t-a_-c-h-a-n-g-e-d/index.html","searchKeys":["METADATA_CHANGED","METADATA_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.METADATA_CHANGED"]},{"name":"MUSIC_ONLY","description":"live.hms.video.sdk.models.enums.AudioMixingMode.MUSIC_ONLY","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-m-u-s-i-c_-o-n-l-y/index.html","searchKeys":["MUSIC_ONLY","MUSIC_ONLY","live.hms.video.sdk.models.enums.AudioMixingMode.MUSIC_ONLY"]},{"name":"MUTED","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.MUTED","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/-m-u-t-e-d/index.html","searchKeys":["MUTED","MUTED","live.hms.video.media.settings.HMSTrackSettings.InitState.MUTED"]},{"name":"NAME_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NAME_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-a-m-e_-c-h-a-n-g-e-d/index.html","searchKeys":["NAME_CHANGED","NAME_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.NAME_CHANGED"]},{"name":"NETWORK_QUALITY_UPDATED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NETWORK_QUALITY_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-e-t-w-o-r-k_-q-u-a-l-i-t-y_-u-p-d-a-t-e-d/index.html","searchKeys":["NETWORK_QUALITY_UPDATED","NETWORK_QUALITY_UPDATED","live.hms.video.sdk.models.enums.HMSPeerUpdate.NETWORK_QUALITY_UPDATED"]},{"name":"NONE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.NONE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.NONE"]},{"name":"NONE","description":"live.hms.video.connection.degredation.QualityLimitationReason.NONE","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.connection.degredation.QualityLimitationReason.NONE"]},{"name":"NONE","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.NONE","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.NONE"]},{"name":"NONE","description":"live.hms.video.sdk.models.enums.HMSRecordingState.NONE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.sdk.models.enums.HMSRecordingState.NONE"]},{"name":"NONE","description":"live.hms.video.sdk.models.enums.HMSStreamingState.NONE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-n-o-n-e/index.html","searchKeys":["NONE","NONE","live.hms.video.sdk.models.enums.HMSStreamingState.NONE"]},{"name":"NO_BLUETOOTH_CONNECT_PERMISSION","description":"live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_CONNECT_PERMISSION","location":"lib/live.hms.video.audio/-bluetooth-error-type/-n-o_-b-l-u-e-t-o-o-t-h_-c-o-n-n-e-c-t_-p-e-r-m-i-s-s-i-o-n/index.html","searchKeys":["NO_BLUETOOTH_CONNECT_PERMISSION","NO_BLUETOOTH_CONNECT_PERMISSION","live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_CONNECT_PERMISSION"]},{"name":"NO_BLUETOOTH_PERMISSON","description":"live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_PERMISSON","location":"lib/live.hms.video.audio/-bluetooth-error-type/-n-o_-b-l-u-e-t-o-o-t-h_-p-e-r-m-i-s-s-o-n/index.html","searchKeys":["NO_BLUETOOTH_PERMISSON","NO_BLUETOOTH_PERMISSON","live.hms.video.audio.BluetoothErrorType.NO_BLUETOOTH_PERMISSON"]},{"name":"NO_DOMINANT_SPEAKER","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.NO_DOMINANT_SPEAKER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-n-o_-d-o-m-i-n-a-n-t_-s-p-e-a-k-e-r/index.html","searchKeys":["NO_DOMINANT_SPEAKER","NO_DOMINANT_SPEAKER","live.hms.video.sdk.models.enums.HMSPeerUpdate.NO_DOMINANT_SPEAKER"]},{"name":"OFF","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.OFF","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-o-f-f/index.html","searchKeys":["OFF","OFF","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.OFF"]},{"name":"OFF","description":"live.hms.video.utils.HMSLogger.LogLevel.OFF","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-o-f-f/index.html","searchKeys":["OFF","OFF","live.hms.video.utils.HMSLogger.LogLevel.OFF"]},{"name":"OPUS","description":"live.hms.video.media.codec.HMSAudioCodec.OPUS","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/-o-p-u-s/index.html","searchKeys":["OPUS","OPUS","live.hms.video.media.codec.HMSAudioCodec.OPUS"]},{"name":"OTHER","description":"live.hms.video.connection.degredation.QualityLimitationReason.OTHER","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-o-t-h-e-r/index.html","searchKeys":["OTHER","OTHER","live.hms.video.connection.degredation.QualityLimitationReason.OTHER"]},{"name":"PAUSED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.PAUSED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-p-a-u-s-e-d/index.html","searchKeys":["PAUSED","PAUSED","live.hms.video.sdk.models.enums.HMSRecordingState.PAUSED"]},{"name":"PEER","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.PEER","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-p-e-e-r/index.html","searchKeys":["PEER","PEER","live.hms.video.sdk.models.enums.HMSMessageRecipientType.PEER"]},{"name":"PEER_ID","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.PEER_ID","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-p-e-e-r_-i-d/index.html","searchKeys":["PEER_ID","PEER_ID","live.hms.video.polls.models.HmsPollUserTrackingMode.PEER_ID"]},{"name":"PEER_JOINED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_JOINED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-p-e-e-r_-j-o-i-n-e-d/index.html","searchKeys":["PEER_JOINED","PEER_JOINED","live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_JOINED"]},{"name":"PEER_LEFT","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_LEFT","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-p-e-e-r_-l-e-f-t/index.html","searchKeys":["PEER_LEFT","PEER_LEFT","live.hms.video.sdk.models.enums.HMSPeerUpdate.PEER_LEFT"]},{"name":"PHONE_RINGING","description":"live.hms.video.audio.AudioChangeEvent.PHONE_RINGING","location":"lib/live.hms.video.audio/-audio-change-event/-p-h-o-n-e_-r-i-n-g-i-n-g/index.html","searchKeys":["PHONE_RINGING","PHONE_RINGING","live.hms.video.audio.AudioChangeEvent.PHONE_RINGING"]},{"name":"POLL","description":"live.hms.video.polls.models.HmsPollCategory.POLL","location":"lib/live.hms.video.polls.models/-hms-poll-category/-p-o-l-l/index.html","searchKeys":["POLL","POLL","live.hms.video.polls.models.HmsPollCategory.POLL"]},{"name":"PREFER_AUDIO_TRACK_STATE","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_AUDIO_TRACK_STATE","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/-p-r-e-f-e-r_-a-u-d-i-o_-t-r-a-c-k_-s-t-a-t-e/index.html","searchKeys":["PREFER_AUDIO_TRACK_STATE","PREFER_AUDIO_TRACK_STATE","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_AUDIO_TRACK_STATE"]},{"name":"PREFER_VIDEO_TRACK_STATE","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_VIDEO_TRACK_STATE","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/-p-r-e-f-e-r_-v-i-d-e-o_-t-r-a-c-k_-s-t-a-t-e/index.html","searchKeys":["PREFER_VIDEO_TRACK_STATE","PREFER_VIDEO_TRACK_STATE","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.PREFER_VIDEO_TRACK_STATE"]},{"name":"PREINITIALIZED","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.PREINITIALIZED","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-p-r-e-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["PREINITIALIZED","PREINITIALIZED","live.hms.video.audio.HMSAudioManager.AudioManagerState.PREINITIALIZED"]},{"name":"PREVIEW","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.PREVIEW","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/-p-r-e-v-i-e-w/index.html","searchKeys":["PREVIEW","PREVIEW","live.hms.video.sdk.models.enums.RetrySchedulerState.PREVIEW"]},{"name":"PUBLISH_AND_SUBSCRIBE","description":"live.hms.video.sdk.models.enums.HMSMode.PUBLISH_AND_SUBSCRIBE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-p-u-b-l-i-s-h_-a-n-d_-s-u-b-s-c-r-i-b-e/index.html","searchKeys":["PUBLISH_AND_SUBSCRIBE","PUBLISH_AND_SUBSCRIBE","live.hms.video.sdk.models.enums.HMSMode.PUBLISH_AND_SUBSCRIBE"]},{"name":"PUSHLISH_ONLY","description":"live.hms.video.sdk.models.enums.HMSMode.PUSHLISH_ONLY","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-p-u-s-h-l-i-s-h_-o-n-l-y/index.html","searchKeys":["PUSHLISH_ONLY","PUSHLISH_ONLY","live.hms.video.sdk.models.enums.HMSMode.PUSHLISH_ONLY"]},{"name":"QUIZ","description":"live.hms.video.polls.models.HmsPollCategory.QUIZ","location":"lib/live.hms.video.polls.models/-hms-poll-category/-q-u-i-z/index.html","searchKeys":["QUIZ","QUIZ","live.hms.video.polls.models.HmsPollCategory.QUIZ"]},{"name":"REACT_NATIVE","description":"live.hms.video.events.AgentType.REACT_NATIVE","location":"lib/live.hms.video.events/-agent-type/-r-e-a-c-t_-n-a-t-i-v-e/index.html","searchKeys":["REACT_NATIVE","REACT_NATIVE","live.hms.video.events.AgentType.REACT_NATIVE"]},{"name":"REGULAR","description":"live.hms.video.sdk.models.HMSPeerType.REGULAR","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/-r-e-g-u-l-a-r/index.html","searchKeys":["REGULAR","REGULAR","live.hms.video.sdk.models.HMSPeerType.REGULAR"]},{"name":"REPLACE_BACKGROUND","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.REPLACE_BACKGROUND","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/-r-e-p-l-a-c-e_-b-a-c-k-g-r-o-u-n-d/index.html","searchKeys":["REPLACE_BACKGROUND","REPLACE_BACKGROUND","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.REPLACE_BACKGROUND"]},{"name":"RESUMED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.RESUMED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-r-e-s-u-m-e-d/index.html","searchKeys":["RESUMED","RESUMED","live.hms.video.sdk.models.enums.HMSRecordingState.RESUMED"]},{"name":"ROLES","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.ROLES","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/-r-o-l-e-s/index.html","searchKeys":["ROLES","ROLES","live.hms.video.sdk.models.enums.HMSMessageRecipientType.ROLES"]},{"name":"ROLE_CHANGED","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.ROLE_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/-r-o-l-e_-c-h-a-n-g-e-d/index.html","searchKeys":["ROLE_CHANGED","ROLE_CHANGED","live.hms.video.sdk.models.enums.HMSPeerUpdate.ROLE_CHANGED"]},{"name":"ROOM_MUTED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_MUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-m-u-t-e-d/index.html","searchKeys":["ROOM_MUTED","ROOM_MUTED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_MUTED"]},{"name":"ROOM_PEER_COUNT_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-p-e-e-r_-c-o-u-n-t_-u-p-d-a-t-e-d/index.html","searchKeys":["ROOM_PEER_COUNT_UPDATED","ROOM_PEER_COUNT_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED"]},{"name":"ROOM_UNMUTED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_UNMUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-o-o-m_-u-n-m-u-t-e-d/index.html","searchKeys":["ROOM_UNMUTED","ROOM_UNMUTED","live.hms.video.sdk.models.enums.HMSRoomUpdate.ROOM_UNMUTED"]},{"name":"RTMP_STREAMING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.RTMP_STREAMING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-r-t-m-p_-s-t-r-e-a-m-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["RTMP_STREAMING_STATE_UPDATED","RTMP_STREAMING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.RTMP_STREAMING_STATE_UPDATED"]},{"name":"RUNNING","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.RUNNING","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-r-u-n-n-i-n-g/index.html","searchKeys":["RUNNING","RUNNING","live.hms.video.audio.HMSAudioManager.AudioManagerState.RUNNING"]},{"name":"SERVER_RECORDING_STATE_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.SERVER_RECORDING_STATE_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-s-e-r-v-e-r_-r-e-c-o-r-d-i-n-g_-s-t-a-t-e_-u-p-d-a-t-e-d/index.html","searchKeys":["SERVER_RECORDING_STATE_UPDATED","SERVER_RECORDING_STATE_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.SERVER_RECORDING_STATE_UPDATED"]},{"name":"SIGNAL_CONNECTED","description":"live.hms.video.diagnostics.models.ConnectivityState.SIGNAL_CONNECTED","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-s-i-g-n-a-l_-c-o-n-n-e-c-t-e-d/index.html","searchKeys":["SIGNAL_CONNECTED","SIGNAL_CONNECTED","live.hms.video.diagnostics.models.ConnectivityState.SIGNAL_CONNECTED"]},{"name":"SIP","description":"live.hms.video.sdk.models.HMSPeerType.SIP","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/-s-i-p/index.html","searchKeys":["SIP","SIP","live.hms.video.sdk.models.HMSPeerType.SIP"]},{"name":"SPEAKER_PHONE","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.SPEAKER_PHONE","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-s-p-e-a-k-e-r_-p-h-o-n-e/index.html","searchKeys":["SPEAKER_PHONE","SPEAKER_PHONE","live.hms.video.audio.HMSAudioManager.AudioDevice.SPEAKER_PHONE"]},{"name":"SPEAKER_PHONE","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.SPEAKER_PHONE","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-s-p-e-a-k-e-r_-p-h-o-n-e/index.html","searchKeys":["SPEAKER_PHONE","SPEAKER_PHONE","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.SPEAKER_PHONE"]},{"name":"STARTED","description":"live.hms.video.polls.models.HmsPollState.STARTED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.polls.models.HmsPollState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.TranscriptionState.STARTED","location":"lib/live.hms.video.sdk.models/-transcription-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.TranscriptionState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STARTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.enums.HMSRecordingState.STARTED"]},{"name":"STARTED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STARTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-a-r-t-e-d/index.html","searchKeys":["STARTED","STARTED","live.hms.video.sdk.models.enums.HMSStreamingState.STARTED"]},{"name":"STARTING","description":"live.hms.video.diagnostics.models.ConnectivityState.STARTING","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.diagnostics.models.ConnectivityState.STARTING"]},{"name":"STARTING","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STARTING","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.sdk.models.enums.HMSRecordingState.STARTING"]},{"name":"STARTING","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STARTING","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-a-r-t-i-n-g/index.html","searchKeys":["STARTING","STARTING","live.hms.video.sdk.models.enums.HMSStreamingState.STARTING"]},{"name":"STATISTICS","description":"live.hms.video.utils.HMSLogger.LogFiles.STATISTICS","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/-s-t-a-t-i-s-t-i-c-s/index.html","searchKeys":["STATISTICS","STATISTICS","live.hms.video.utils.HMSLogger.LogFiles.STATISTICS"]},{"name":"STOPPED","description":"live.hms.video.polls.models.HmsPollState.STOPPED","location":"lib/live.hms.video.polls.models/-hms-poll-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.polls.models.HmsPollState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.TranscriptionState.STOPPED","location":"lib/live.hms.video.sdk.models/-transcription-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.TranscriptionState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.enums.HMSRecordingState.STOPPED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.enums.HMSRecordingState.STOPPED"]},{"name":"STOPPED","description":"live.hms.video.sdk.models.enums.HMSStreamingState.STOPPED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/-s-t-o-p-p-e-d/index.html","searchKeys":["STOPPED","STOPPED","live.hms.video.sdk.models.enums.HMSStreamingState.STOPPED"]},{"name":"SUBSCRIBE_ONLY","description":"live.hms.video.sdk.models.enums.HMSMode.SUBSCRIBE_ONLY","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/-s-u-b-s-c-r-i-b-e_-o-n-l-y/index.html","searchKeys":["SUBSCRIBE_ONLY","SUBSCRIBE_ONLY","live.hms.video.sdk.models.enums.HMSMode.SUBSCRIBE_ONLY"]},{"name":"Started","description":"live.hms.video.whiteboard.State.Started","location":"lib/live.hms.video.whiteboard/-state/-started/index.html","searchKeys":["Started","Started","live.hms.video.whiteboard.State.Started"]},{"name":"Stopped","description":"live.hms.video.whiteboard.State.Stopped","location":"lib/live.hms.video.whiteboard/-state/-stopped/index.html","searchKeys":["Stopped","Stopped","live.hms.video.whiteboard.State.Stopped"]},{"name":"TALK_AND_MUSIC","description":"live.hms.video.sdk.models.enums.AudioMixingMode.TALK_AND_MUSIC","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-t-a-l-k_-a-n-d_-m-u-s-i-c/index.html","searchKeys":["TALK_AND_MUSIC","TALK_AND_MUSIC","live.hms.video.sdk.models.enums.AudioMixingMode.TALK_AND_MUSIC"]},{"name":"TALK_ONLY","description":"live.hms.video.sdk.models.enums.AudioMixingMode.TALK_ONLY","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/-t-a-l-k_-o-n-l-y/index.html","searchKeys":["TALK_ONLY","TALK_ONLY","live.hms.video.sdk.models.enums.AudioMixingMode.TALK_ONLY"]},{"name":"TRACK_ADDED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_ADDED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-a-d-d-e-d/index.html","searchKeys":["TRACK_ADDED","TRACK_ADDED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_ADDED"]},{"name":"TRACK_DEGRADED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DEGRADED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-d-e-g-r-a-d-e-d/index.html","searchKeys":["TRACK_DEGRADED","TRACK_DEGRADED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DEGRADED"]},{"name":"TRACK_DESCRIPTION_CHANGED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DESCRIPTION_CHANGED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-d-e-s-c-r-i-p-t-i-o-n_-c-h-a-n-g-e-d/index.html","searchKeys":["TRACK_DESCRIPTION_CHANGED","TRACK_DESCRIPTION_CHANGED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_DESCRIPTION_CHANGED"]},{"name":"TRACK_MUTED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_MUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-m-u-t-e-d/index.html","searchKeys":["TRACK_MUTED","TRACK_MUTED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_MUTED"]},{"name":"TRACK_REMOVED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_REMOVED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-r-e-m-o-v-e-d/index.html","searchKeys":["TRACK_REMOVED","TRACK_REMOVED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_REMOVED"]},{"name":"TRACK_RESTORED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_RESTORED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-r-e-s-t-o-r-e-d/index.html","searchKeys":["TRACK_RESTORED","TRACK_RESTORED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_RESTORED"]},{"name":"TRACK_UNMUTED","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_UNMUTED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/-t-r-a-c-k_-u-n-m-u-t-e-d/index.html","searchKeys":["TRACK_UNMUTED","TRACK_UNMUTED","live.hms.video.sdk.models.enums.HMSTrackUpdate.TRACK_UNMUTED"]},{"name":"TRANSCRIPTIONS_UPDATED","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.TRANSCRIPTIONS_UPDATED","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/-t-r-a-n-s-c-r-i-p-t-i-o-n-s_-u-p-d-a-t-e-d/index.html","searchKeys":["TRANSCRIPTIONS_UPDATED","TRANSCRIPTIONS_UPDATED","live.hms.video.sdk.models.enums.HMSRoomUpdate.TRANSCRIPTIONS_UPDATED"]},{"name":"TRANSFORM","description":"live.hms.video.plugin.video.HMSVideoPluginType.TRANSFORM","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/-t-r-a-n-s-f-o-r-m/index.html","searchKeys":["TRANSFORM","TRANSFORM","live.hms.video.plugin.video.HMSVideoPluginType.TRANSFORM"]},{"name":"UNINITIALIZED","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.UNINITIALIZED","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/-u-n-i-n-i-t-i-a-l-i-z-e-d/index.html","searchKeys":["UNINITIALIZED","UNINITIALIZED","live.hms.video.audio.HMSAudioManager.AudioManagerState.UNINITIALIZED"]},{"name":"UNKNOWN","description":"live.hms.video.connection.degredation.QualityLimitationReason.UNKNOWN","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/-u-n-k-n-o-w-n/index.html","searchKeys":["UNKNOWN","UNKNOWN","live.hms.video.connection.degredation.QualityLimitationReason.UNKNOWN"]},{"name":"UNMUTED","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.UNMUTED","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/-u-n-m-u-t-e-d/index.html","searchKeys":["UNMUTED","UNMUTED","live.hms.video.media.settings.HMSTrackSettings.InitState.UNMUTED"]},{"name":"USERNAME","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.USERNAME","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-u-s-e-r-n-a-m-e/index.html","searchKeys":["USERNAME","USERNAME","live.hms.video.polls.models.HmsPollUserTrackingMode.USERNAME"]},{"name":"USER_ID","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.USER_ID","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/-u-s-e-r_-i-d/index.html","searchKeys":["USER_ID","USER_ID","live.hms.video.polls.models.HmsPollUserTrackingMode.USER_ID"]},{"name":"VERBOSE","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.VERBOSE","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.VERBOSE"]},{"name":"VERBOSE","description":"live.hms.video.utils.HMSLogger.LogLevel.VERBOSE","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE","live.hms.video.utils.HMSLogger.LogLevel.VERBOSE"]},{"name":"VIDEO","description":"live.hms.video.media.tracks.HMSTrackType.VIDEO","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-v-i-d-e-o/index.html","searchKeys":["VIDEO","VIDEO","live.hms.video.media.tracks.HMSTrackType.VIDEO"]},{"name":"VP8","description":"live.hms.video.media.codec.HMSVideoCodec.VP8","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-v-p8/index.html","searchKeys":["VP8","VP8","live.hms.video.media.codec.HMSVideoCodec.VP8"]},{"name":"VP9","description":"live.hms.video.media.codec.HMSVideoCodec.VP9","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/-v-p9/index.html","searchKeys":["VP9","VP9","live.hms.video.media.codec.HMSVideoCodec.VP9"]},{"name":"WARN","description":"live.hms.video.utils.HMSLogger.LogLevel.WARN","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/-w-a-r-n/index.html","searchKeys":["WARN","WARN","live.hms.video.utils.HMSLogger.LogLevel.WARN"]},{"name":"WIRED_HEADSET","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.WIRED_HEADSET","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/-w-i-r-e-d_-h-e-a-d-s-e-t/index.html","searchKeys":["WIRED_HEADSET","WIRED_HEADSET","live.hms.video.audio.HMSAudioManager.AudioDevice.WIRED_HEADSET"]},{"name":"WIRED_HEADSET","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.WIRED_HEADSET","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/-w-i-r-e-d_-h-e-a-d-s-e-t/index.html","searchKeys":["WIRED_HEADSET","WIRED_HEADSET","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.WIRED_HEADSET"]},{"name":"abstract class AudioManagerCompat","description":"live.hms.video.audio.manager.AudioManagerCompat","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/index.html","searchKeys":["AudioManagerCompat","abstract class AudioManagerCompat","live.hms.video.audio.manager.AudioManagerCompat"]},{"name":"abstract class HMSMediaStream(nativeStream: MediaStream)","description":"live.hms.video.media.streams.HMSMediaStream","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/index.html","searchKeys":["HMSMediaStream","abstract class HMSMediaStream(nativeStream: MediaStream)","live.hms.video.media.streams.HMSMediaStream"]},{"name":"abstract class HMSPeer","description":"live.hms.video.sdk.models.HMSPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/index.html","searchKeys":["HMSPeer","abstract class HMSPeer","live.hms.video.sdk.models.HMSPeer"]},{"name":"abstract class HMSTrack","description":"live.hms.video.media.tracks.HMSTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-track/index.html","searchKeys":["HMSTrack","abstract class HMSTrack","live.hms.video.media.tracks.HMSTrack"]},{"name":"abstract class LocalTrack : Track","description":"live.hms.video.connection.degredation.Track.LocalTrack","location":"lib/live.hms.video.connection.degredation/-track/-local-track/index.html","searchKeys":["LocalTrack","abstract class LocalTrack : Track","live.hms.video.connection.degredation.Track.LocalTrack"]},{"name":"abstract class RemoteTrack : Track","description":"live.hms.video.connection.degredation.RemoteTrack","location":"lib/live.hms.video.connection.degredation/-remote-track/index.html","searchKeys":["RemoteTrack","abstract class RemoteTrack : Track","live.hms.video.connection.degredation.RemoteTrack"]},{"name":"abstract fun abandonCallAudioFocus()","description":"live.hms.video.audio.manager.AudioManagerCompat.abandonCallAudioFocus","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/abandon-call-audio-focus.html","searchKeys":["abandonCallAudioFocus","abstract fun abandonCallAudioFocus()","live.hms.video.audio.manager.AudioManagerCompat.abandonCallAudioFocus"]},{"name":"abstract fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManager.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","abstract fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManager.addAudioFocusChangeCallback"]},{"name":"abstract fun createSoundPool(): SoundPool","description":"live.hms.video.audio.manager.AudioManagerCompat.createSoundPool","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/create-sound-pool.html","searchKeys":["createSoundPool","abstract fun createSoundPool(): SoundPool","live.hms.video.audio.manager.AudioManagerCompat.createSoundPool"]},{"name":"abstract fun disableEffects()","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.disableEffects","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/disable-effects.html","searchKeys":["disableEffects","abstract fun disableEffects()","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.disableEffects"]},{"name":"abstract fun enableBackground(bitmap: Bitmap)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBackground","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/enable-background.html","searchKeys":["enableBackground","abstract fun enableBackground(bitmap: Bitmap)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBackground"]},{"name":"abstract fun enableBlur(blurPercentage: Int = DEFAULT_BLUR_PERCENTAGE)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBlur","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/enable-blur.html","searchKeys":["enableBlur","abstract fun enableBlur(blurPercentage: Int = DEFAULT_BLUR_PERCENTAGE)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.enableBlur"]},{"name":"abstract fun getAudioDevices(): Set","description":"live.hms.video.audio.HMSAudioManager.getAudioDevices","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-audio-devices.html","searchKeys":["getAudioDevices","abstract fun getAudioDevices(): Set","live.hms.video.audio.HMSAudioManager.getAudioDevices"]},{"name":"abstract fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.HMSAudioManager.getAudioDevicesInfoList","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","abstract fun getAudioDevicesInfoList(): List","live.hms.video.audio.HMSAudioManager.getAudioDevicesInfoList"]},{"name":"abstract fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","abstract fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","live.hms.video.factories.noisecancellation.NoiseCancellation.getAudioProcessingFactory"]},{"name":"abstract fun getCurrentBlurPercentage(): Int","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.getCurrentBlurPercentage","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/get-current-blur-percentage.html","searchKeys":["getCurrentBlurPercentage","abstract fun getCurrentBlurPercentage(): Int","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.getCurrentBlurPercentage"]},{"name":"abstract fun getName(): String","description":"live.hms.video.plugin.video.HMSVideoPlugin.getName","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/get-name.html","searchKeys":["getName","abstract fun getName(): String","live.hms.video.plugin.video.HMSVideoPlugin.getName"]},{"name":"abstract fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","abstract fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellation.getNoiseCancellationEnabled"]},{"name":"abstract fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.plugin.video.HMSVideoPlugin.getPluginType","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/get-plugin-type.html","searchKeys":["getPluginType","abstract fun getPluginType(): HMSVideoPluginType","live.hms.video.plugin.video.HMSVideoPlugin.getPluginType"]},{"name":"abstract fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManager.getSelectedAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/get-selected-audio-device.html","searchKeys":["getSelectedAudioDevice","abstract fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManager.getSelectedAudioDevice"]},{"name":"abstract fun isStarted(): Boolean","description":"live.hms.video.audio.HMSAudioManager.isStarted","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/is-started.html","searchKeys":["isStarted","abstract fun isStarted(): Boolean","live.hms.video.audio.HMSAudioManager.isStarted"]},{"name":"abstract fun isSupported(): Boolean","description":"live.hms.video.plugin.video.HMSVideoPlugin.isSupported","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/is-supported.html","searchKeys":["isSupported","abstract fun isSupported(): Boolean","live.hms.video.plugin.video.HMSVideoPlugin.isSupported"]},{"name":"abstract fun jniLoad(context: Context): NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactory.jniLoad","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory/jni-load.html","searchKeys":["jniLoad","abstract fun jniLoad(context: Context): NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFactory.jniLoad"]},{"name":"abstract fun onAudioDeviceChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioDevices: Set)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceChanged","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-audio-device-changed.html","searchKeys":["onAudioDeviceChanged","abstract fun onAudioDeviceChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioDevices: Set)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceChanged"]},{"name":"abstract fun onAudioFocusChange(event: AudioChangeEvent)","description":"live.hms.video.audio.AudioManagerFocusChangeCallbacks.onAudioFocusChange","location":"lib/live.hms.video.audio/-audio-manager-focus-change-callbacks/on-audio-focus-change.html","searchKeys":["onAudioFocusChange","abstract fun onAudioFocusChange(event: AudioChangeEvent)","live.hms.video.audio.AudioManagerFocusChangeCallbacks.onAudioFocusChange"]},{"name":"abstract fun onAudioLevelUpdate(speakers: Array)","description":"live.hms.video.sdk.HMSAudioListener.onAudioLevelUpdate","location":"lib/live.hms.video.sdk/-h-m-s-audio-listener/on-audio-level-update.html","searchKeys":["onAudioLevelUpdate","abstract fun onAudioLevelUpdate(speakers: Array)","live.hms.video.sdk.HMSAudioListener.onAudioLevelUpdate"]},{"name":"abstract fun onBluetoothError(errorType: BluetoothErrorType)","description":"live.hms.video.audio.BluetoothErrors.onBluetoothError","location":"lib/live.hms.video.audio/-bluetooth-errors/on-bluetooth-error.html","searchKeys":["onBluetoothError","abstract fun onBluetoothError(errorType: BluetoothErrorType)","live.hms.video.audio.BluetoothErrors.onBluetoothError"]},{"name":"abstract fun onChangeTrackStateRequest(details: HMSChangeTrackStateRequest)","description":"live.hms.video.sdk.HMSUpdateListener.onChangeTrackStateRequest","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-change-track-state-request.html","searchKeys":["onChangeTrackStateRequest","abstract fun onChangeTrackStateRequest(details: HMSChangeTrackStateRequest)","live.hms.video.sdk.HMSUpdateListener.onChangeTrackStateRequest"]},{"name":"abstract fun onCompleted(result: ConnectivityCheckResult)","description":"live.hms.video.diagnostics.ConnectivityCheckListener.onCompleted","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/on-completed.html","searchKeys":["onCompleted","abstract fun onCompleted(result: ConnectivityCheckResult)","live.hms.video.diagnostics.ConnectivityCheckListener.onCompleted"]},{"name":"abstract fun onConnectivityStateChanged(state: ConnectivityState)","description":"live.hms.video.diagnostics.ConnectivityCheckListener.onConnectivityStateChanged","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/on-connectivity-state-changed.html","searchKeys":["onConnectivityStateChanged","abstract fun onConnectivityStateChanged(state: ConnectivityState)","live.hms.video.diagnostics.ConnectivityCheckListener.onConnectivityStateChanged"]},{"name":"abstract fun onError(e: HMSException)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onError","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-error.html","searchKeys":["onError","abstract fun onError(e: HMSException)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onError","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.diagnostics.HMSCameraCheckListener.onError","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.diagnostics.HMSCameraCheckListener.onError"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.video.sdk.IErrorListener.onError","location":"lib/live.hms.video.sdk/-i-error-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.video.sdk.IErrorListener.onError"]},{"name":"abstract fun onFrame(bitmap: Bitmap): Bitmap","description":"live.hms.video.plugin.video.utils.HMSBitmapUpdateListener.onFrame","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-update-listener/on-frame.html","searchKeys":["onFrame","abstract fun onFrame(bitmap: Bitmap): Bitmap","live.hms.video.plugin.video.utils.HMSBitmapUpdateListener.onFrame"]},{"name":"abstract fun onFrame(rotatedWidth: Int, rotatedHeight: Int, rotation: Int)","description":"live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener.onFrame","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-frame-info-listener/on-frame.html","searchKeys":["onFrame","abstract fun onFrame(rotatedWidth: Int, rotatedHeight: Int, rotation: Int)","live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener.onFrame"]},{"name":"abstract fun onFrameCaptured(bitmap: Bitmap)","description":"live.hms.video.sdk.HmsVideoFrameListener.onFrameCaptured","location":"lib/live.hms.video.sdk/-hms-video-frame-listener/on-frame-captured.html","searchKeys":["onFrameCaptured","abstract fun onFrameCaptured(bitmap: Bitmap)","live.hms.video.sdk.HmsVideoFrameListener.onFrameCaptured"]},{"name":"abstract fun onJoin(room: HMSRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onJoin","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-join.html","searchKeys":["onJoin","abstract fun onJoin(room: HMSRoom)","live.hms.video.sdk.HMSUpdateListener.onJoin"]},{"name":"abstract fun onKeyChanged(key: String, value: JsonElement?)","description":"live.hms.video.sessionstore.HMSKeyChangeListener.onKeyChanged","location":"lib/live.hms.video.sessionstore/-h-m-s-key-change-listener/on-key-changed.html","searchKeys":["onKeyChanged","abstract fun onKeyChanged(key: String, value: JsonElement?)","live.hms.video.sessionstore.HMSKeyChangeListener.onKeyChanged"]},{"name":"abstract fun onLayoutSuccess(layout: HMSRoomLayout)","description":"live.hms.video.signal.init.HMSLayoutListener.onLayoutSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-layout-listener/on-layout-success.html","searchKeys":["onLayoutSuccess","abstract fun onLayoutSuccess(layout: HMSRoomLayout)","live.hms.video.signal.init.HMSLayoutListener.onLayoutSuccess"]},{"name":"abstract fun onLogMessage(level: HMSLogger.LogLevel, tag: String, message: String, isWebRtCLog: Boolean)","description":"live.hms.video.utils.HMSLogger.Loggable.onLogMessage","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/on-log-message.html","searchKeys":["onLogMessage","abstract fun onLogMessage(level: HMSLogger.LogLevel, tag: String, message: String, isWebRtCLog: Boolean)","live.hms.video.utils.HMSLogger.Loggable.onLogMessage"]},{"name":"abstract fun onMessageReceived(message: HMSMessage)","description":"live.hms.video.sdk.HMSUpdateListener.onMessageReceived","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-message-received.html","searchKeys":["onMessageReceived","abstract fun onMessageReceived(message: HMSMessage)","live.hms.video.sdk.HMSUpdateListener.onMessageReceived"]},{"name":"abstract fun onNetworkQuality(quality: HMSNetworkQuality, peer: HMSPeer?)","description":"live.hms.video.connection.stats.quality.HMSNetworkObserver.onNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-observer/on-network-quality.html","searchKeys":["onNetworkQuality","abstract fun onNetworkQuality(quality: HMSNetworkQuality, peer: HMSPeer?)","live.hms.video.connection.stats.quality.HMSNetworkObserver.onNetworkQuality"]},{"name":"abstract fun onOutputResult(output: VideoFrame?)","description":"live.hms.video.sdk.HMSPluginResultListener.onOutputResult","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/on-output-result.html","searchKeys":["onOutputResult","abstract fun onOutputResult(output: VideoFrame?)","live.hms.video.sdk.HMSPluginResultListener.onOutputResult"]},{"name":"abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","description":"live.hms.video.sdk.HMSPreviewListener.onPeerUpdate","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-peer-update.html","searchKeys":["onPeerUpdate","abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","live.hms.video.sdk.HMSPreviewListener.onPeerUpdate"]},{"name":"abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","description":"live.hms.video.sdk.HMSUpdateListener.onPeerUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-peer-update.html","searchKeys":["onPeerUpdate","abstract fun onPeerUpdate(type: HMSPeerUpdate, peer: HMSPeer)","live.hms.video.sdk.HMSUpdateListener.onPeerUpdate"]},{"name":"abstract fun onPollUpdate(hmsPoll: HmsPoll, hmsPollUpdateType: HMSPollUpdateType)","description":"live.hms.video.interactivity.HmsPollUpdateListener.onPollUpdate","location":"lib/live.hms.video.interactivity/-hms-poll-update-listener/on-poll-update.html","searchKeys":["onPollUpdate","abstract fun onPollUpdate(hmsPoll: HmsPoll, hmsPollUpdateType: HMSPollUpdateType)","live.hms.video.interactivity.HmsPollUpdateListener.onPollUpdate"]},{"name":"abstract fun onPreview(room: HMSRoom, localTracks: Array)","description":"live.hms.video.sdk.HMSPreviewListener.onPreview","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-preview.html","searchKeys":["onPreview","abstract fun onPreview(room: HMSRoom, localTracks: Array)","live.hms.video.sdk.HMSPreviewListener.onPreview"]},{"name":"abstract fun onRoleChangeRequest(request: HMSRoleChangeRequest)","description":"live.hms.video.sdk.HMSUpdateListener.onRoleChangeRequest","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-role-change-request.html","searchKeys":["onRoleChangeRequest","abstract fun onRoleChangeRequest(request: HMSRoleChangeRequest)","live.hms.video.sdk.HMSUpdateListener.onRoleChangeRequest"]},{"name":"abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","description":"live.hms.video.sdk.HMSPreviewListener.onRoomUpdate","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/on-room-update.html","searchKeys":["onRoomUpdate","abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","live.hms.video.sdk.HMSPreviewListener.onRoomUpdate"]},{"name":"abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onRoomUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-room-update.html","searchKeys":["onRoomUpdate","abstract fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom)","live.hms.video.sdk.HMSUpdateListener.onRoomUpdate"]},{"name":"abstract fun onSuccess()","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onSuccess","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess()","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onSuccess"]},{"name":"abstract fun onSuccess()","description":"live.hms.video.sdk.HMSActionResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-action-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess()","live.hms.video.sdk.HMSActionResultListener.onSuccess"]},{"name":"abstract fun onSuccess(currentLayer: String)","description":"live.hms.video.sdk.HMSAddSinkResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-add-sink-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(currentLayer: String)","live.hms.video.sdk.HMSAddSinkResultListener.onSuccess"]},{"name":"abstract fun onSuccess(hmsMessage: HMSMessage)","description":"live.hms.video.sdk.HMSMessageResultListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-message-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(hmsMessage: HMSMessage)","live.hms.video.sdk.HMSMessageResultListener.onSuccess"]},{"name":"abstract fun onSuccess(result: ArrayList)","description":"live.hms.video.sdk.listeners.PeerListResultListener.onSuccess","location":"lib/live.hms.video.sdk.listeners/-peer-list-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: ArrayList)","live.hms.video.sdk.listeners.PeerListResultListener.onSuccess"]},{"name":"abstract fun onSuccess(result: T)","description":"live.hms.video.sdk.HmsTypedActionResultListener.onSuccess","location":"lib/live.hms.video.sdk/-hms-typed-action-result-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: T)","live.hms.video.sdk.HmsTypedActionResultListener.onSuccess"]},{"name":"abstract fun onSuccess(sessionMetadata: JsonElement?)","description":"live.hms.video.sdk.HMSSessionMetadataListener.onSuccess","location":"lib/live.hms.video.sdk/-h-m-s-session-metadata-listener/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(sessionMetadata: JsonElement?)","live.hms.video.sdk.HMSSessionMetadataListener.onSuccess"]},{"name":"abstract fun onTimeTaken(timeObject: ProcessTimeVariables)","description":"live.hms.video.sdk.HMSPluginResultListener.onTimeTaken","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/on-time-taken.html","searchKeys":["onTimeTaken","abstract fun onTimeTaken(timeObject: ProcessTimeVariables)","live.hms.video.sdk.HMSPluginResultListener.onTimeTaken"]},{"name":"abstract fun onTokenSuccess(string: String)","description":"live.hms.video.signal.init.HMSTokenListener.onTokenSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-token-listener/on-token-success.html","searchKeys":["onTokenSuccess","abstract fun onTokenSuccess(string: String)","live.hms.video.signal.init.HMSTokenListener.onTokenSuccess"]},{"name":"abstract fun onTrackUpdate(type: HMSTrackUpdate, track: HMSTrack, peer: HMSPeer)","description":"live.hms.video.sdk.HMSUpdateListener.onTrackUpdate","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-track-update.html","searchKeys":["onTrackUpdate","abstract fun onTrackUpdate(type: HMSTrackUpdate, track: HMSTrack, peer: HMSPeer)","live.hms.video.sdk.HMSUpdateListener.onTrackUpdate"]},{"name":"abstract fun onTracks(localTracks: Array)","description":"live.hms.video.sdk.RolePreviewListener.onTracks","location":"lib/live.hms.video.sdk/-role-preview-listener/on-tracks.html","searchKeys":["onTracks","abstract fun onTracks(localTracks: Array)","live.hms.video.sdk.RolePreviewListener.onTracks"]},{"name":"abstract fun onUpdate(hmsWhiteboardUpdate: HMSWhiteboardUpdate)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdateListener.onUpdate","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update-listener/on-update.html","searchKeys":["onUpdate","abstract fun onUpdate(hmsWhiteboardUpdate: HMSWhiteboardUpdate)","live.hms.video.whiteboard.HMSWhiteboardUpdateListener.onUpdate"]},{"name":"abstract fun onVideoTrack(localVideoTrack: HMSVideoTrack)","description":"live.hms.video.diagnostics.HMSCameraCheckListener.onVideoTrack","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/on-video-track.html","searchKeys":["onVideoTrack","abstract fun onVideoTrack(localVideoTrack: HMSVideoTrack)","live.hms.video.diagnostics.HMSCameraCheckListener.onVideoTrack"]},{"name":"abstract fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.plugin.video.HMSVideoPlugin.processVideoFrame","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/process-video-frame.html","searchKeys":["processVideoFrame","abstract fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.plugin.video.HMSVideoPlugin.processVideoFrame"]},{"name":"abstract fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManager.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","abstract fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManager.removeAudioFocusChangeCallback"]},{"name":"abstract fun requestCallAudioFocus(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.requestCallAudioFocus","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/request-call-audio-focus.html","searchKeys":["requestCallAudioFocus","abstract fun requestCallAudioFocus(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.requestCallAudioFocus"]},{"name":"abstract fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.HMSAudioManager.selectAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/select-audio-device.html","searchKeys":["selectAudioDevice","abstract fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.HMSAudioManager.selectAudioDevice"]},{"name":"abstract fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.HMSAudioManager.setAudioMode","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/set-audio-mode.html","searchKeys":["setAudioMode","abstract fun setAudioMode(audioMode: Int)","live.hms.video.audio.HMSAudioManager.setAudioMode"]},{"name":"abstract fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/set-description.html","searchKeys":["setDescription","abstract fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalTrack.setDescription"]},{"name":"abstract fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/set-mute.html","searchKeys":["setMute","abstract fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalTrack.setMute"]},{"name":"abstract fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","abstract fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellation.setNoiseCancellationEnabled"]},{"name":"abstract fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.setVideoFrameInfoListener","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/set-video-frame-info-listener.html","searchKeys":["setVideoFrameInfoListener","abstract fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface.setVideoFrameInfoListener"]},{"name":"abstract fun start()","description":"live.hms.video.audio.HMSAudioManager.start","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/start.html","searchKeys":["start","abstract fun start()","live.hms.video.audio.HMSAudioManager.start"]},{"name":"abstract fun start()","description":"live.hms.video.media.capturers.HMSCapturer.start","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/start.html","searchKeys":["start","abstract fun start()","live.hms.video.media.capturers.HMSCapturer.start"]},{"name":"abstract fun stop()","description":"live.hms.video.audio.HMSAudioManager.stop","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.audio.HMSAudioManager.stop"]},{"name":"abstract fun stop()","description":"live.hms.video.media.capturers.HMSCapturer.stop","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.media.capturers.HMSCapturer.stop"]},{"name":"abstract fun stop()","description":"live.hms.video.plugin.video.HMSVideoPlugin.stop","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.video.plugin.video.HMSVideoPlugin.stop"]},{"name":"abstract override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.RemoteTrack.bytesTransported","location":"lib/live.hms.video.connection.degredation/-remote-track/bytes-transported.html","searchKeys":["bytesTransported","abstract override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.RemoteTrack.bytesTransported"]},{"name":"abstract override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-remote-track/remote-timestamp.html","searchKeys":["remoteTimestamp","abstract override val remoteTimestamp: Double?","live.hms.video.connection.degredation.RemoteTrack.remoteTimestamp"]},{"name":"abstract override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.RemoteTrack.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-remote-track/track-identifier.html","searchKeys":["trackIdentifier","abstract override val trackIdentifier: String?","live.hms.video.connection.degredation.RemoteTrack.trackIdentifier"]},{"name":"abstract suspend fun init()","description":"live.hms.video.plugin.video.HMSVideoPlugin.init","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/init.html","searchKeys":["init","abstract suspend fun init()","live.hms.video.plugin.video.HMSVideoPlugin.init"]},{"name":"abstract val audioTrack: HMSAudioTrack?","description":"live.hms.video.sdk.models.HMSPeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/audio-track.html","searchKeys":["audioTrack","abstract val audioTrack: HMSAudioTrack?","live.hms.video.sdk.models.HMSPeer.audioTrack"]},{"name":"abstract val audio_concealed_samples: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealed_samples","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_concealed_samples.html","searchKeys":["audio_concealed_samples","abstract val audio_concealed_samples: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealed_samples"]},{"name":"abstract val audio_concealment_events: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealment_events","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_concealment_events.html","searchKeys":["audio_concealment_events","abstract val audio_concealment_events: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_concealment_events"]},{"name":"abstract val audio_level_high_seconds: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_level_high_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_level_high_seconds.html","searchKeys":["audio_level_high_seconds","abstract val audio_level_high_seconds: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_level_high_seconds"]},{"name":"abstract val audio_total_samples_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_total_samples_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/audio_total_samples_received.html","searchKeys":["audio_total_samples_received","abstract val audio_total_samples_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.audio_total_samples_received"]},{"name":"abstract val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","abstract val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgAvailableOutgoingBitrateBps"]},{"name":"abstract val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","abstract val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgBitrateBps"]},{"name":"abstract val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-jitter-ms.html","searchKeys":["avgJitterMs","abstract val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgJitterMs"]},{"name":"abstract val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","abstract val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.avgRoundTripTimeMs"]},{"name":"abstract val avg_av_sync_ms: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_av_sync_ms","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_av_sync_ms.html","searchKeys":["avg_av_sync_ms","abstract val avg_av_sync_ms: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_av_sync_ms"]},{"name":"abstract val avg_frames_decoded_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_decoded_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_decoded_per_sec.html","searchKeys":["avg_frames_decoded_per_sec","abstract val avg_frames_decoded_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_decoded_per_sec"]},{"name":"abstract val avg_frames_dropped_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_dropped_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_dropped_per_sec.html","searchKeys":["avg_frames_dropped_per_sec","abstract val avg_frames_dropped_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_dropped_per_sec"]},{"name":"abstract val avg_frames_received_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_received_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_frames_received_per_sec.html","searchKeys":["avg_frames_received_per_sec","abstract val avg_frames_received_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_frames_received_per_sec"]},{"name":"abstract val avg_jitter_buffer_delay: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/avg_jitter_buffer_delay.html","searchKeys":["avg_jitter_buffer_delay","abstract val avg_jitter_buffer_delay: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.avg_jitter_buffer_delay"]},{"name":"abstract val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/bytes-transported.html","searchKeys":["bytesTransported","abstract val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.bytesTransported"]},{"name":"abstract val fec_packets_discarded: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_discarded","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/fec_packets_discarded.html","searchKeys":["fec_packets_discarded","abstract val fec_packets_discarded: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_discarded"]},{"name":"abstract val fec_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/fec_packets_received.html","searchKeys":["fec_packets_received","abstract val fec_packets_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.fec_packets_received"]},{"name":"abstract val frame_height: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_height","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/frame_height.html","searchKeys":["frame_height","abstract val frame_height: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_height"]},{"name":"abstract val frame_width: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_width","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/frame_width.html","searchKeys":["frame_width","abstract val frame_width: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.frame_width"]},{"name":"abstract val freeze_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/freeze_count.html","searchKeys":["freeze_count","abstract val freeze_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_count"]},{"name":"abstract val freeze_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/freeze_duration_seconds.html","searchKeys":["freeze_duration_seconds","abstract val freeze_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.freeze_duration_seconds"]},{"name":"abstract val jitter: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.jitter","location":"lib/live.hms.video.connection.degredation/-remote-track/jitter.html","searchKeys":["jitter","abstract val jitter: Double?","live.hms.video.connection.degredation.RemoteTrack.jitter"]},{"name":"abstract val jitter: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.jitter","location":"lib/live.hms.video.connection.degredation/-track/-local-track/jitter.html","searchKeys":["jitter","abstract val jitter: Double?","live.hms.video.connection.degredation.Track.LocalTrack.jitter"]},{"name":"abstract val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-remote-track/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","abstract val jitterBufferDelay: Double?","live.hms.video.connection.degredation.RemoteTrack.jitterBufferDelay"]},{"name":"abstract val jitter_buffer_delay: Double","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/jitter_buffer_delay.html","searchKeys":["jitter_buffer_delay","abstract val jitter_buffer_delay: Double","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.jitter_buffer_delay"]},{"name":"abstract val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-remote-track/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","abstract val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.RemoteTrack.lastPacketReceivedTimestamp"]},{"name":"abstract val packetsLost: Int?","description":"live.hms.video.connection.degredation.RemoteTrack.packetsLost","location":"lib/live.hms.video.connection.degredation/-remote-track/packets-lost.html","searchKeys":["packetsLost","abstract val packetsLost: Int?","live.hms.video.connection.degredation.RemoteTrack.packetsLost"]},{"name":"abstract val packetsReceived: Long?","description":"live.hms.video.connection.degredation.RemoteTrack.packetsReceived","location":"lib/live.hms.video.connection.degredation/-remote-track/packets-received.html","searchKeys":["packetsReceived","abstract val packetsReceived: Long?","live.hms.video.connection.degredation.RemoteTrack.packetsReceived"]},{"name":"abstract val pause_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/pause_count.html","searchKeys":["pause_count","abstract val pause_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_count"]},{"name":"abstract val pause_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/pause_duration_seconds.html","searchKeys":["pause_duration_seconds","abstract val pause_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.pause_duration_seconds"]},{"name":"abstract val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/remote-timestamp.html","searchKeys":["remoteTimestamp","abstract val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.remoteTimestamp"]},{"name":"abstract val source: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/source.html","searchKeys":["source","abstract val source: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.source"]},{"name":"abstract val ssrc: Long?","description":"live.hms.video.connection.degredation.RemoteTrack.ssrc","location":"lib/live.hms.video.connection.degredation/-remote-track/ssrc.html","searchKeys":["ssrc","abstract val ssrc: Long?","live.hms.video.connection.degredation.RemoteTrack.ssrc"]},{"name":"abstract val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/ssrc.html","searchKeys":["ssrc","abstract val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.ssrc"]},{"name":"abstract val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/ssrc.html","searchKeys":["ssrc","abstract val ssrc: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.ssrc"]},{"name":"abstract val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.BaseSample.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-base-sample/timestamp.html","searchKeys":["timestamp","abstract val timestamp: Long","live.hms.video.connection.stats.clientside.model.BaseSample.timestamp"]},{"name":"abstract val timestampUs: Double?","description":"live.hms.video.connection.degredation.RemoteTrack.timestampUs","location":"lib/live.hms.video.connection.degredation/-remote-track/timestamp-us.html","searchKeys":["timestampUs","abstract val timestampUs: Double?","live.hms.video.connection.degredation.RemoteTrack.timestampUs"]},{"name":"abstract val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/total-packets-lost.html","searchKeys":["totalPacketsLost","abstract val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.PublishBaseSamples.totalPacketsLost"]},{"name":"abstract val total_nack_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_nack_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/total_nack_count.html","searchKeys":["total_nack_count","abstract val total_nack_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_nack_count"]},{"name":"abstract val total_packets_lost: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_lost","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_packets_lost.html","searchKeys":["total_packets_lost","abstract val total_packets_lost: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_lost"]},{"name":"abstract val total_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_packets_received.html","searchKeys":["total_packets_received","abstract val total_packets_received: Long","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_packets_received"]},{"name":"abstract val total_pli_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_pli_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/total_pli_count.html","searchKeys":["total_pli_count","abstract val total_pli_count: Int","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample.total_pli_count"]},{"name":"abstract val total_samples_duration: Float","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_samples_duration","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/total_samples_duration.html","searchKeys":["total_samples_duration","abstract val total_samples_duration: Float","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample.total_samples_duration"]},{"name":"abstract val trackId: String","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/track-id.html","searchKeys":["trackId","abstract val trackId: String","live.hms.video.connection.stats.clientside.model.TrackAnalytics.trackId"]},{"name":"abstract val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/track-identifier.html","searchKeys":["trackIdentifier","abstract val trackIdentifier: String?","live.hms.video.connection.degredation.Track.trackIdentifier"]},{"name":"abstract val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-track/type.html","searchKeys":["type","abstract val type: HMSTrackType","live.hms.video.media.tracks.HMSTrack.type"]},{"name":"abstract val videoTrack: HMSVideoTrack?","description":"live.hms.video.sdk.models.HMSPeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/video-track.html","searchKeys":["videoTrack","abstract val videoTrack: HMSVideoTrack?","live.hms.video.sdk.models.HMSPeer.videoTrack"]},{"name":"abstract var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","abstract var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteTrack.isPlaybackAllowed"]},{"name":"abstract var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/ssrc.html","searchKeys":["ssrc","abstract var ssrc: Long","live.hms.video.media.tracks.HMSRemoteTrack.ssrc"]},{"name":"annotation class Unstable(val message: String = \"This API is unstable and may not do what it implies. Please wait for a stable version.\")","description":"live.hms.video.sdk.Unstable","location":"lib/live.hms.video.sdk/-unstable/index.html","searchKeys":["Unstable","annotation class Unstable(val message: String = \"This API is unstable and may not do what it implies. Please wait for a stable version.\")","live.hms.video.sdk.Unstable"]},{"name":"annotation class YuvType","description":"live.hms.video.media.capturers.camera.utils.YuvType","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-type/index.html","searchKeys":["YuvType","annotation class YuvType","live.hms.video.media.capturers.camera.utils.YuvType"]},{"name":"class AudioInputDeviceReport","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/index.html","searchKeys":["AudioInputDeviceReport","class AudioInputDeviceReport","live.hms.video.diagnostics.models.AudioInputDeviceReport"]},{"name":"class AudioOutputDeviceReport","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/index.html","searchKeys":["AudioOutputDeviceReport","class AudioOutputDeviceReport","live.hms.video.diagnostics.models.AudioOutputDeviceReport"]},{"name":"class BitMatrix(bitmap: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.BitMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/index.html","searchKeys":["BitMatrix","class BitMatrix(bitmap: Bitmap)","live.hms.video.media.capturers.camera.utils.BitMatrix"]},{"name":"class BluetoothPermissionHandler(val hmsTrackSettings: HMSTrackSettings)","description":"live.hms.video.audio.BluetoothPermissionHandler","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/index.html","searchKeys":["BluetoothPermissionHandler","class BluetoothPermissionHandler(val hmsTrackSettings: HMSTrackSettings)","live.hms.video.audio.BluetoothPermissionHandler"]},{"name":"class Brb","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-brb/index.html","searchKeys":["Brb","class Brb","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder"]},{"name":"class Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/index.html","searchKeys":["Builder","class Builder","live.hms.video.polls.HMSPollBuilder.Builder"]},{"name":"class Builder(context: Context)","description":"live.hms.video.sdk.HMSSDK.Builder","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/index.html","searchKeys":["Builder","class Builder(context: Context)","live.hms.video.sdk.HMSSDK.Builder"]},{"name":"class Builder(val type: HMSPollQuestionType)","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/index.html","searchKeys":["Builder","class Builder(val type: HMSPollQuestionType)","live.hms.video.polls.HMSPollQuestionBuilder.Builder"]},{"name":"class CameraControl","description":"live.hms.video.media.capturers.camera.CameraControl","location":"lib/live.hms.video.media.capturers.camera/-camera-control/index.html","searchKeys":["CameraControl","class CameraControl","live.hms.video.media.capturers.camera.CameraControl"]},{"name":"class ConnectivityCheckResult","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/index.html","searchKeys":["ConnectivityCheckResult","class ConnectivityCheckResult","live.hms.video.diagnostics.models.ConnectivityCheckResult"]},{"name":"class DeviceTestReport","description":"live.hms.video.diagnostics.models.DeviceTestReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/index.html","searchKeys":["DeviceTestReport","class DeviceTestReport","live.hms.video.diagnostics.models.DeviceTestReport"]},{"name":"class EmojiReactions","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-emoji-reactions/index.html","searchKeys":["EmojiReactions","class EmojiReactions","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions"]},{"name":"class FeatureFlags(flags: Set)","description":"live.hms.video.sdk.featureflags.FeatureFlags","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/index.html","searchKeys":["FeatureFlags","class FeatureFlags(flags: Set)","live.hms.video.sdk.featureflags.FeatureFlags"]},{"name":"class HMSAudioManagerApi31 : HMSAudioManager","description":"live.hms.video.audio.manager.HMSAudioManagerApi31","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/index.html","searchKeys":["HMSAudioManagerApi31","class HMSAudioManagerApi31 : HMSAudioManager","live.hms.video.audio.manager.HMSAudioManagerApi31"]},{"name":"class HMSAudioTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSAudioTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/index.html","searchKeys":["HMSAudioTrackSettings","class HMSAudioTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSAudioTrackSettings"]},{"name":"class HMSBitmapPlugin(val hmsSDK: HMSSDK, val hmsBitmapUpdateListener: HMSBitmapUpdateListener) : HMSVideoPlugin","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/index.html","searchKeys":["HMSBitmapPlugin","class HMSBitmapPlugin(val hmsSDK: HMSSDK, val hmsBitmapUpdateListener: HMSBitmapUpdateListener) : HMSVideoPlugin","live.hms.video.plugin.video.utils.HMSBitmapPlugin"]},{"name":"class HMSDiagnostics","description":"live.hms.video.diagnostics.HMSDiagnostics","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/index.html","searchKeys":["HMSDiagnostics","class HMSDiagnostics","live.hms.video.diagnostics.HMSDiagnostics"]},{"name":"class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap = hashMapOf()) : Exception, IAnalyticsPropertiesProvider","description":"live.hms.video.error.HMSException","location":"lib/live.hms.video.error/-h-m-s-exception/index.html","searchKeys":["HMSException","class HMSException(val code: Int, val name: String, val action: String, val message: String, description: String, cause: Throwable? = null, var isTerminal: Boolean = true, params: HashMap = hashMapOf()) : Exception, IAnalyticsPropertiesProvider","live.hms.video.error.HMSException"]},{"name":"class HMSLocalAudioTrack : HMSAudioTrack, HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/index.html","searchKeys":["HMSLocalAudioTrack","class HMSLocalAudioTrack : HMSAudioTrack, HMSLocalTrack","live.hms.video.media.tracks.HMSLocalAudioTrack"]},{"name":"class HMSLocalPeer : HMSPeer","description":"live.hms.video.sdk.models.HMSLocalPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/index.html","searchKeys":["HMSLocalPeer","class HMSLocalPeer : HMSPeer","live.hms.video.sdk.models.HMSLocalPeer"]},{"name":"class HMSLocalVideoTrack : HMSVideoTrack, HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/index.html","searchKeys":["HMSLocalVideoTrack","class HMSLocalVideoTrack : HMSVideoTrack, HMSLocalTrack","live.hms.video.media.tracks.HMSLocalVideoTrack"]},{"name":"class HMSMessageRecipient","description":"live.hms.video.sdk.models.HMSMessageRecipient","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/index.html","searchKeys":["HMSMessageRecipient","class HMSMessageRecipient","live.hms.video.sdk.models.HMSMessageRecipient"]},{"name":"class HMSPollBuilder","description":"live.hms.video.polls.HMSPollBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/index.html","searchKeys":["HMSPollBuilder","class HMSPollBuilder","live.hms.video.polls.HMSPollBuilder"]},{"name":"class HMSPollQuestionBuilder","description":"live.hms.video.polls.HMSPollQuestionBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/index.html","searchKeys":["HMSPollQuestionBuilder","class HMSPollQuestionBuilder","live.hms.video.polls.HMSPollQuestionBuilder"]},{"name":"class HMSPollResponseBuilder(val hmsPoll: HmsPoll, val userId: String?)","description":"live.hms.video.polls.HMSPollResponseBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/index.html","searchKeys":["HMSPollResponseBuilder","class HMSPollResponseBuilder(val hmsPoll: HmsPoll, val userId: String?)","live.hms.video.polls.HMSPollResponseBuilder"]},{"name":"class HMSRemoteAudioTrack : HMSAudioTrack, HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/index.html","searchKeys":["HMSRemoteAudioTrack","class HMSRemoteAudioTrack : HMSAudioTrack, HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteAudioTrack"]},{"name":"class HMSRemotePeer : HMSPeer","description":"live.hms.video.sdk.models.HMSRemotePeer","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/index.html","searchKeys":["HMSRemotePeer","class HMSRemotePeer : HMSPeer","live.hms.video.sdk.models.HMSRemotePeer"]},{"name":"class HMSRemoteVideoTrack : HMSVideoTrack, HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/index.html","searchKeys":["HMSRemoteVideoTrack","class HMSRemoteVideoTrack : HMSVideoTrack, HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteVideoTrack"]},{"name":"class HMSSDK","description":"live.hms.video.sdk.HMSSDK","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/index.html","searchKeys":["HMSSDK","class HMSSDK","live.hms.video.sdk.HMSSDK"]},{"name":"class HMSScreenCaptureService : Service","description":"live.hms.video.services.HMSScreenCaptureService","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/index.html","searchKeys":["HMSScreenCaptureService","class HMSScreenCaptureService : Service","live.hms.video.services.HMSScreenCaptureService"]},{"name":"class HMSSimulcastSettings","description":"live.hms.video.media.settings.HMSSimulcastSettings","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/index.html","searchKeys":["HMSSimulcastSettings","class HMSSimulcastSettings","live.hms.video.media.settings.HMSSimulcastSettings"]},{"name":"class HMSTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/index.html","searchKeys":["HMSTrackSettings","class HMSTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSTrackSettings"]},{"name":"class HMSTranscriptionPermissions","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/index.html","searchKeys":["HMSTranscriptionPermissions","class HMSTranscriptionPermissions","live.hms.video.sdk.models.role.HMSTranscriptionPermissions"]},{"name":"class HMSVideoDecoderFactory(eglContext: EglBase.Context, val forceSoftwareDecoder: Boolean = false) : DefaultVideoDecoderFactory","description":"live.hms.video.factories.HMSVideoDecoderFactory","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/index.html","searchKeys":["HMSVideoDecoderFactory","class HMSVideoDecoderFactory(eglContext: EglBase.Context, val forceSoftwareDecoder: Boolean = false) : DefaultVideoDecoderFactory","live.hms.video.factories.HMSVideoDecoderFactory"]},{"name":"class HMSVideoTrackSettings : IAnalyticsPropertiesProvider","description":"live.hms.video.media.settings.HMSVideoTrackSettings","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/index.html","searchKeys":["HMSVideoTrackSettings","class HMSVideoTrackSettings : IAnalyticsPropertiesProvider","live.hms.video.media.settings.HMSVideoTrackSettings"]},{"name":"class HandRaise","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-hand-raise/index.html","searchKeys":["HandRaise","class HandRaise","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise"]},{"name":"class HmsInteractivityCenter","description":"live.hms.video.interactivity.HmsInteractivityCenter","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/index.html","searchKeys":["HmsInteractivityCenter","class HmsInteractivityCenter","live.hms.video.interactivity.HmsInteractivityCenter"]},{"name":"class HmsSessionStore","description":"live.hms.video.sessionstore.HmsSessionStore","location":"lib/live.hms.video.sessionstore/-hms-session-store/index.html","searchKeys":["HmsSessionStore","class HmsSessionStore","live.hms.video.sessionstore.HmsSessionStore"]},{"name":"class HmsUtilities","description":"live.hms.video.utils.HmsUtilities","location":"lib/live.hms.video.utils/-hms-utilities/index.html","searchKeys":["HmsUtilities","class HmsUtilities","live.hms.video.utils.HmsUtilities"]},{"name":"class IceCandidatePair","description":"live.hms.video.diagnostics.models.IceCandidatePair","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/index.html","searchKeys":["IceCandidatePair","class IceCandidatePair","live.hms.video.diagnostics.models.IceCandidatePair"]},{"name":"class Leave","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-leave/index.html","searchKeys":["Leave","class Leave","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave"]},{"name":"class LogAlarmManager : BroadcastReceiver","description":"live.hms.video.services.LogAlarmManager","location":"lib/live.hms.video.services/-log-alarm-manager/index.html","searchKeys":["LogAlarmManager","class LogAlarmManager : BroadcastReceiver","live.hms.video.services.LogAlarmManager"]},{"name":"class MediaServerReport","description":"live.hms.video.diagnostics.models.MediaServerReport","location":"lib/live.hms.video.diagnostics.models/-media-server-report/index.html","searchKeys":["MediaServerReport","class MediaServerReport","live.hms.video.diagnostics.models.MediaServerReport"]},{"name":"class MicrophoneUtils","description":"live.hms.video.utils.MicrophoneUtils","location":"lib/live.hms.video.utils/-microphone-utils/index.html","searchKeys":["MicrophoneUtils","class MicrophoneUtils","live.hms.video.utils.MicrophoneUtils"]},{"name":"class NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker) : NoiseCancellationFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/index.html","searchKeys":["NoiseCancellationFactoryImpl","class NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker) : NoiseCancellationFactory","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl"]},{"name":"class NoiseCancellationFake(val libraryPresent: Boolean, val enabledFromDashboard: Boolean) : NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/index.html","searchKeys":["NoiseCancellationFake","class NoiseCancellationFake(val libraryPresent: Boolean, val enabledFromDashboard: Boolean) : NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFake"]},{"name":"class NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean) : NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/index.html","searchKeys":["NoiseCancellationImpl","class NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean) : NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationImpl"]},{"name":"class NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/index.html","searchKeys":["NoiseCancellationStatusChecker","class NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker"]},{"name":"class OfflineAnalyticsPeerInfo : Closeable","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/index.html","searchKeys":["OfflineAnalyticsPeerInfo","class OfflineAnalyticsPeerInfo : Closeable","live.hms.video.sdk.OfflineAnalyticsPeerInfo"]},{"name":"class OrientationTools","description":"live.hms.video.media.capturers.camera.utils.OrientationTools","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/index.html","searchKeys":["OrientationTools","class OrientationTools","live.hms.video.media.capturers.camera.utils.OrientationTools"]},{"name":"class ParticipantList","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-participant-list/index.html","searchKeys":["ParticipantList","class ParticipantList","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList"]},{"name":"class PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","description":"live.hms.video.sdk.models.PeerListIterator","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/index.html","searchKeys":["PeerListIterator","class PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","live.hms.video.sdk.models.PeerListIterator"]},{"name":"class PeerSearchResponse","description":"live.hms.video.sdk.models.PeerSearchResponse","location":"lib/live.hms.video.sdk.models/-peer-search-response/index.html","searchKeys":["PeerSearchResponse","class PeerSearchResponse","live.hms.video.sdk.models.PeerSearchResponse"]},{"name":"class PublishAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String, val source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/index.html","searchKeys":["PublishAudioStatsSampler","class PublishAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String, val source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler"]},{"name":"class PublishVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val rid: String?, val ssrc: String, val source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/index.html","searchKeys":["PublishVideoStatsSampler","class PublishVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val rid: String?, val ssrc: String, val source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler"]},{"name":"class SafeVariable","description":"live.hms.video.factories.SafeVariable","location":"lib/live.hms.video.factories/-safe-variable/index.html","searchKeys":["SafeVariable","class SafeVariable","live.hms.video.factories.SafeVariable"]},{"name":"class SignallingReport","description":"live.hms.video.diagnostics.models.SignallingReport","location":"lib/live.hms.video.diagnostics.models/-signalling-report/index.html","searchKeys":["SignallingReport","class SignallingReport","live.hms.video.diagnostics.models.SignallingReport"]},{"name":"class SignatureChecker(applicationContext: Context)","description":"live.hms.video.sdk.SignatureChecker","location":"lib/live.hms.video.sdk/-signature-checker/index.html","searchKeys":["SignatureChecker","class SignatureChecker(applicationContext: Context)","live.hms.video.sdk.SignatureChecker"]},{"name":"class SpeedTest","description":"live.hms.video.sdk.SpeedTest","location":"lib/live.hms.video.sdk/-speed-test/index.html","searchKeys":["SpeedTest","class SpeedTest","live.hms.video.sdk.SpeedTest"]},{"name":"class SubscribeAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/index.html","searchKeys":["SubscribeAudioStatsSampler","class SubscribeAudioStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler"]},{"name":"class SubscribeVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/index.html","searchKeys":["SubscribeVideoStatsSampler","class SubscribeVideoStatsSampler(val SAMPLE_DURATION: Double, val trackId: String, val ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler"]},{"name":"class Transcriptions","description":"live.hms.video.sdk.models.Transcriptions","location":"lib/live.hms.video.sdk.models/-transcriptions/index.html","searchKeys":["Transcriptions","class Transcriptions","live.hms.video.sdk.models.Transcriptions"]},{"name":"class TypeConverter","description":"live.hms.video.database.converters.TypeConverter","location":"lib/live.hms.video.database.converters/-type-converter/index.html","searchKeys":["TypeConverter","class TypeConverter","live.hms.video.database.converters.TypeConverter"]},{"name":"class VideoInputDeviceReport","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/index.html","searchKeys":["VideoInputDeviceReport","class VideoInputDeviceReport","live.hms.video.diagnostics.models.VideoInputDeviceReport"]},{"name":"class WertcAudioUtils","description":"live.hms.video.utils.WertcAudioUtils","location":"lib/live.hms.video.utils/-wertc-audio-utils/index.html","searchKeys":["WertcAudioUtils","class WertcAudioUtils","live.hms.video.utils.WertcAudioUtils"]},{"name":"class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/index.html","searchKeys":["YuvByteBuffer","class YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","live.hms.video.media.capturers.camera.utils.YuvByteBuffer"]},{"name":"class YuvToRgbConverter(context: Context)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/index.html","searchKeys":["YuvToRgbConverter","class YuvToRgbConverter(context: Context)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter"]},{"name":"const val ACTION_START: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_START","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-a-c-t-i-o-n_-s-t-a-r-t.html","searchKeys":["ACTION_START","const val ACTION_START: String","live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_START"]},{"name":"const val ACTION_STOP: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_STOP","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-a-c-t-i-o-n_-s-t-o-p.html","searchKeys":["ACTION_STOP","const val ACTION_STOP: String","live.hms.video.services.HMSScreenCaptureService.Companion.ACTION_STOP"]},{"name":"const val CHAT: String","description":"live.hms.video.sdk.models.enums.HMSMessageType.CHAT","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/-c-h-a-t.html","searchKeys":["CHAT","const val CHAT: String","live.hms.video.sdk.models.enums.HMSMessageType.CHAT"]},{"name":"const val DEFAULT_BLUR_PERCENTAGE: Int = 75","description":"live.hms.video.plugin.video.virtualbackground.DEFAULT_BLUR_PERCENTAGE","location":"lib/live.hms.video.plugin.video.virtualbackground/-d-e-f-a-u-l-t_-b-l-u-r_-p-e-r-c-e-n-t-a-g-e.html","searchKeys":["DEFAULT_BLUR_PERCENTAGE","const val DEFAULT_BLUR_PERCENTAGE: Int = 75","live.hms.video.plugin.video.virtualbackground.DEFAULT_BLUR_PERCENTAGE"]},{"name":"const val DEFAULT_DIR_SIZE: Long = 1000000","description":"live.hms.video.services.LogAlarmManager.Companion.DEFAULT_DIR_SIZE","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-d-e-f-a-u-l-t_-d-i-r_-s-i-z-e.html","searchKeys":["DEFAULT_DIR_SIZE","const val DEFAULT_DIR_SIZE: Long = 1000000","live.hms.video.services.LogAlarmManager.Companion.DEFAULT_DIR_SIZE"]},{"name":"const val DEFAULT_DIR_SIZE: Long = 1000000","description":"live.hms.video.utils.LogUtils.DEFAULT_DIR_SIZE","location":"lib/live.hms.video.utils/-log-utils/-d-e-f-a-u-l-t_-d-i-r_-s-i-z-e.html","searchKeys":["DEFAULT_DIR_SIZE","const val DEFAULT_DIR_SIZE: Long = 1000000","live.hms.video.utils.LogUtils.DEFAULT_DIR_SIZE"]},{"name":"const val DEFAULT_LOGS_FILE_NAME: String","description":"live.hms.video.services.LogAlarmManager.Companion.DEFAULT_LOGS_FILE_NAME","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-d-e-f-a-u-l-t_-l-o-g-s_-f-i-l-e_-n-a-m-e.html","searchKeys":["DEFAULT_LOGS_FILE_NAME","const val DEFAULT_LOGS_FILE_NAME: String","live.hms.video.services.LogAlarmManager.Companion.DEFAULT_LOGS_FILE_NAME"]},{"name":"const val FLAG_MUTABLE: Int = 33554432","description":"live.hms.video.utils.AndroidSDKConstants.FLAG_MUTABLE","location":"lib/live.hms.video.utils/-android-s-d-k-constants/-f-l-a-g_-m-u-t-a-b-l-e.html","searchKeys":["FLAG_MUTABLE","const val FLAG_MUTABLE: Int = 33554432","live.hms.video.utils.AndroidSDKConstants.FLAG_MUTABLE"]},{"name":"const val LOCAL_SCREEN_CAPTURER_THREAD: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.LOCAL_SCREEN_CAPTURER_THREAD","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-l-o-c-a-l_-s-c-r-e-e-n_-c-a-p-t-u-r-e-r_-t-h-r-e-a-d.html","searchKeys":["LOCAL_SCREEN_CAPTURER_THREAD","const val LOCAL_SCREEN_CAPTURER_THREAD: String","live.hms.video.services.HMSScreenCaptureService.Companion.LOCAL_SCREEN_CAPTURER_THREAD"]},{"name":"const val MAX_DIR_SIZE: String","description":"live.hms.video.services.LogAlarmManager.Companion.MAX_DIR_SIZE","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/-m-a-x_-d-i-r_-s-i-z-e.html","searchKeys":["MAX_DIR_SIZE","const val MAX_DIR_SIZE: String","live.hms.video.services.LogAlarmManager.Companion.MAX_DIR_SIZE"]},{"name":"const val MAX_DIR_SIZE: String","description":"live.hms.video.utils.LogUtils.MAX_DIR_SIZE","location":"lib/live.hms.video.utils/-log-utils/-m-a-x_-d-i-r_-s-i-z-e.html","searchKeys":["MAX_DIR_SIZE","const val MAX_DIR_SIZE: String","live.hms.video.utils.LogUtils.MAX_DIR_SIZE"]},{"name":"const val PERMISSION_RESULT_DATA: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.PERMISSION_RESULT_DATA","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-p-e-r-m-i-s-s-i-o-n_-r-e-s-u-l-t_-d-a-t-a.html","searchKeys":["PERMISSION_RESULT_DATA","const val PERMISSION_RESULT_DATA: String","live.hms.video.services.HMSScreenCaptureService.Companion.PERMISSION_RESULT_DATA"]},{"name":"const val PLUGIN: String","description":"live.hms.video.media.tracks.HMSTrackSource.PLUGIN","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-p-l-u-g-i-n.html","searchKeys":["PLUGIN","const val PLUGIN: String","live.hms.video.media.tracks.HMSTrackSource.PLUGIN"]},{"name":"const val PLUGIN: String","description":"live.hms.video.sdk.models.enums.HMSMessageType.PLUGIN","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/-p-l-u-g-i-n.html","searchKeys":["PLUGIN","const val PLUGIN: String","live.hms.video.sdk.models.enums.HMSMessageType.PLUGIN"]},{"name":"const val REGULAR: String","description":"live.hms.video.media.tracks.HMSTrackSource.REGULAR","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-r-e-g-u-l-a-r.html","searchKeys":["REGULAR","const val REGULAR: String","live.hms.video.media.tracks.HMSTrackSource.REGULAR"]},{"name":"const val SCREEN: String","description":"live.hms.video.media.tracks.HMSTrackSource.SCREEN","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/-s-c-r-e-e-n.html","searchKeys":["SCREEN","const val SCREEN: String","live.hms.video.media.tracks.HMSTrackSource.SCREEN"]},{"name":"const val SCREEN_HEIGHT: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_HEIGHT","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-s-c-r-e-e-n_-h-e-i-g-h-t.html","searchKeys":["SCREEN_HEIGHT","const val SCREEN_HEIGHT: String","live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_HEIGHT"]},{"name":"const val SCREEN_WIDTH: String","description":"live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_WIDTH","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/-s-c-r-e-e-n_-w-i-d-t-h.html","searchKeys":["SCREEN_WIDTH","const val SCREEN_WIDTH: String","live.hms.video.services.HMSScreenCaptureService.Companion.SCREEN_WIDTH"]},{"name":"const val TAG: String","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion.TAG","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion.TAG"]},{"name":"const val TAG: String","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.TAG","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.TAG"]},{"name":"const val VERSION: ","description":"live.hms.video.sdk.HMSSDK.Companion.VERSION","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/-v-e-r-s-i-o-n.html","searchKeys":["VERSION","const val VERSION: ","live.hms.video.sdk.HMSSDK.Companion.VERSION"]},{"name":"const val WEBRTC_VERSION: ","description":"live.hms.video.sdk.HMSSDK.Companion.WEBRTC_VERSION","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/-w-e-b-r-t-c_-v-e-r-s-i-o-n.html","searchKeys":["WEBRTC_VERSION","const val WEBRTC_VERSION: ","live.hms.video.sdk.HMSSDK.Companion.WEBRTC_VERSION"]},{"name":"const val cAlreadyJoined: Int = 5001","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cAlreadyJoined","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/c-already-joined.html","searchKeys":["cAlreadyJoined","const val cAlreadyJoined: Int = 5001","live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cAlreadyJoined"]},{"name":"const val cApiDataChannelLabel: String","description":"live.hms.video.utils.cApiDataChannelLabel","location":"lib/live.hms.video.utils/c-api-data-channel-label.html","searchKeys":["cApiDataChannelLabel","const val cApiDataChannelLabel: String","live.hms.video.utils.cApiDataChannelLabel"]},{"name":"const val cCantAccessCaptureDevice: Int = 3001","description":"live.hms.video.error.ErrorCodes.TracksErrors.cCantAccessCaptureDevice","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-cant-access-capture-device.html","searchKeys":["cCantAccessCaptureDevice","const val cCantAccessCaptureDevice: Int = 3001","live.hms.video.error.ErrorCodes.TracksErrors.cCantAccessCaptureDevice"]},{"name":"const val cCodecChangeNotPermitted: Int = 3007","description":"live.hms.video.error.ErrorCodes.TracksErrors.cCodecChangeNotPermitted","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-codec-change-not-permitted.html","searchKeys":["cCodecChangeNotPermitted","const val cCodecChangeNotPermitted: Int = 3007","live.hms.video.error.ErrorCodes.TracksErrors.cCodecChangeNotPermitted"]},{"name":"const val cConnectionLost: Int = 2001","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cConnectionLost","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-connection-lost.html","searchKeys":["cConnectionLost","const val cConnectionLost: Int = 2001","live.hms.video.error.ErrorCodes.InitAPIErrors.cConnectionLost"]},{"name":"const val cCreateAnswerFailed: Int = 4002","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateAnswerFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-create-answer-failed.html","searchKeys":["cCreateAnswerFailed","const val cCreateAnswerFailed: Int = 4002","live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateAnswerFailed"]},{"name":"const val cCreateOfferFailed: Int = 4001","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateOfferFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-create-offer-failed.html","searchKeys":["cCreateOfferFailed","const val cCreateOfferFailed: Int = 4001","live.hms.video.error.ErrorCodes.WebrtcErrors.cCreateOfferFailed"]},{"name":"const val cDefaultDiagnosticEndpoint: String","description":"live.hms.video.utils.cDefaultDiagnosticEndpoint","location":"lib/live.hms.video.utils/c-default-diagnostic-endpoint.html","searchKeys":["cDefaultDiagnosticEndpoint","const val cDefaultDiagnosticEndpoint: String","live.hms.video.utils.cDefaultDiagnosticEndpoint"]},{"name":"const val cDefaultInitEndpoint: String","description":"live.hms.video.utils.cDefaultInitEndpoint","location":"lib/live.hms.video.utils/c-default-init-endpoint.html","searchKeys":["cDefaultInitEndpoint","const val cDefaultInitEndpoint: String","live.hms.video.utils.cDefaultInitEndpoint"]},{"name":"const val cEndpointUnreachable: Int = 2003","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cEndpointUnreachable","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-endpoint-unreachable.html","searchKeys":["cEndpointUnreachable","const val cEndpointUnreachable: Int = 2003","live.hms.video.error.ErrorCodes.InitAPIErrors.cEndpointUnreachable"]},{"name":"const val cGenericConnect: Int = 1000","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cGenericConnect","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/c-generic-connect.html","searchKeys":["cGenericConnect","const val cGenericConnect: Int = 1000","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cGenericConnect"]},{"name":"const val cGenericTrack: Int = 3000","description":"live.hms.video.error.ErrorCodes.TracksErrors.cGenericTrack","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-generic-track.html","searchKeys":["cGenericTrack","const val cGenericTrack: Int = 3000","live.hms.video.error.ErrorCodes.TracksErrors.cGenericTrack"]},{"name":"const val cHTTPError: Int = 2400","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cHTTPError","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-h-t-t-p-error.html","searchKeys":["cHTTPError","const val cHTTPError: Int = 2400","live.hms.video.error.ErrorCodes.InitAPIErrors.cHTTPError"]},{"name":"const val cICEFailure: Int = 4005","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cICEFailure","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-i-c-e-failure.html","searchKeys":["cICEFailure","const val cICEFailure: Int = 4005","live.hms.video.error.ErrorCodes.WebrtcErrors.cICEFailure"]},{"name":"const val cInconsistencyDetectBufferDelay: Long","description":"live.hms.video.utils.cInconsistencyDetectBufferDelay","location":"lib/live.hms.video.utils/c-inconsistency-detect-buffer-delay.html","searchKeys":["cInconsistencyDetectBufferDelay","const val cInconsistencyDetectBufferDelay: Long","live.hms.video.utils.cInconsistencyDetectBufferDelay"]},{"name":"const val cInconsistencyDetectTimerDelay: Long","description":"live.hms.video.utils.cInconsistencyDetectTimerDelay","location":"lib/live.hms.video.utils/c-inconsistency-detect-timer-delay.html","searchKeys":["cInconsistencyDetectTimerDelay","const val cInconsistencyDetectTimerDelay: Long","live.hms.video.utils.cInconsistencyDetectTimerDelay"]},{"name":"const val cInvalidEndpointURL: Int = 2002","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidEndpointURL","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-invalid-endpoint-u-r-l.html","searchKeys":["cInvalidEndpointURL","const val cInvalidEndpointURL: Int = 2002","live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidEndpointURL"]},{"name":"const val cInvalidTokenFormat: Int = 2004","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidTokenFormat","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-invalid-token-format.html","searchKeys":["cInvalidTokenFormat","const val cInvalidTokenFormat: Int = 2004","live.hms.video.error.ErrorCodes.InitAPIErrors.cInvalidTokenFormat"]},{"name":"const val cInvalidVideoSettings: Int = 3006","description":"live.hms.video.error.ErrorCodes.TracksErrors.cInvalidVideoSettings","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-invalid-video-settings.html","searchKeys":["cInvalidVideoSettings","const val cInvalidVideoSettings: Int = 3006","live.hms.video.error.ErrorCodes.TracksErrors.cInvalidVideoSettings"]},{"name":"const val cJsonParsingFailed: Int = 6004","description":"live.hms.video.error.ErrorCodes.GenericErrors.cJsonParsingFailed","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-json-parsing-failed.html","searchKeys":["cJsonParsingFailed","const val cJsonParsingFailed: Int = 6004","live.hms.video.error.ErrorCodes.GenericErrors.cJsonParsingFailed"]},{"name":"const val cJsonRpcVersion: String","description":"live.hms.video.utils.cJsonRpcVersion","location":"lib/live.hms.video.utils/c-json-rpc-version.html","searchKeys":["cJsonRpcVersion","const val cJsonRpcVersion: String","live.hms.video.utils.cJsonRpcVersion"]},{"name":"const val cMaxJoinAPIRetryTimeMillis: Long","description":"live.hms.video.utils.cMaxJoinAPIRetryTimeMillis","location":"lib/live.hms.video.utils/c-max-join-a-p-i-retry-time-millis.html","searchKeys":["cMaxJoinAPIRetryTimeMillis","const val cMaxJoinAPIRetryTimeMillis: Long","live.hms.video.utils.cMaxJoinAPIRetryTimeMillis"]},{"name":"const val cMaxTransportRetries: Int = 5","description":"live.hms.video.utils.cMaxTransportRetries","location":"lib/live.hms.video.utils/c-max-transport-retries.html","searchKeys":["cMaxTransportRetries","const val cMaxTransportRetries: Int = 5","live.hms.video.utils.cMaxTransportRetries"]},{"name":"const val cMaxTransportRetryDelay: Long","description":"live.hms.video.utils.cMaxTransportRetryDelay","location":"lib/live.hms.video.utils/c-max-transport-retry-delay.html","searchKeys":["cMaxTransportRetryDelay","const val cMaxTransportRetryDelay: Long","live.hms.video.utils.cMaxTransportRetryDelay"]},{"name":"const val cMaxTransportRetryTimeMillis: Long","description":"live.hms.video.utils.cMaxTransportRetryTimeMillis","location":"lib/live.hms.video.utils/c-max-transport-retry-time-millis.html","searchKeys":["cMaxTransportRetryTimeMillis","const val cMaxTransportRetryTimeMillis: Long","live.hms.video.utils.cMaxTransportRetryTimeMillis"]},{"name":"const val cNotConnected: Int = 6000","description":"live.hms.video.error.ErrorCodes.GenericErrors.cNotConnected","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-not-connected.html","searchKeys":["cNotConnected","const val cNotConnected: Int = 6000","live.hms.video.error.ErrorCodes.GenericErrors.cNotConnected"]},{"name":"const val cNotReady: Int = 6003","description":"live.hms.video.error.ErrorCodes.GenericErrors.cNotReady","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-not-ready.html","searchKeys":["cNotReady","const val cNotReady: Int = 6003","live.hms.video.error.ErrorCodes.GenericErrors.cNotReady"]},{"name":"const val cNothingToReturn: Int = 3005","description":"live.hms.video.error.ErrorCodes.TracksErrors.cNothingToReturn","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-nothing-to-return.html","searchKeys":["cNothingToReturn","const val cNothingToReturn: Int = 3005","live.hms.video.error.ErrorCodes.TracksErrors.cNothingToReturn"]},{"name":"const val cPeerConnectionFactoryDisposed: Int = 3004","description":"live.hms.video.error.ErrorCodes.TracksErrors.cPeerConnectionFactoryDisposed","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/c-peer-connection-factory-disposed.html","searchKeys":["cPeerConnectionFactoryDisposed","const val cPeerConnectionFactoryDisposed: Int = 3004","live.hms.video.error.ErrorCodes.TracksErrors.cPeerConnectionFactoryDisposed"]},{"name":"const val cPeerMetadataMissing: Int = 6007","description":"live.hms.video.error.ErrorCodes.GenericErrors.cPeerMetadataMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-peer-metadata-missing.html","searchKeys":["cPeerMetadataMissing","const val cPeerMetadataMissing: Int = 6007","live.hms.video.error.ErrorCodes.GenericErrors.cPeerMetadataMissing"]},{"name":"const val cPublishRenegotiationCallback: String","description":"live.hms.video.utils.cPublishRenegotiationCallback","location":"lib/live.hms.video.utils/c-publish-renegotiation-callback.html","searchKeys":["cPublishRenegotiationCallback","const val cPublishRenegotiationCallback: String","live.hms.video.utils.cPublishRenegotiationCallback"]},{"name":"const val cRTCTrackMissing: Int = 6006","description":"live.hms.video.error.ErrorCodes.GenericErrors.cRTCTrackMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-r-t-c-track-missing.html","searchKeys":["cRTCTrackMissing","const val cRTCTrackMissing: Int = 6006","live.hms.video.error.ErrorCodes.GenericErrors.cRTCTrackMissing"]},{"name":"const val cServerErrors: Int = 2000","description":"live.hms.video.error.ErrorCodes.InitAPIErrors.cServerErrors","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/c-server-errors.html","searchKeys":["cServerErrors","const val cServerErrors: Int = 2000","live.hms.video.error.ErrorCodes.InitAPIErrors.cServerErrors"]},{"name":"const val cServerErrors: Int = 5000","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cServerErrors","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/c-server-errors.html","searchKeys":["cServerErrors","const val cServerErrors: Int = 5000","live.hms.video.error.ErrorCodes.WebsocketMethodErrors.cServerErrors"]},{"name":"const val cSetLocalDescriptionFailed: Int = 4003","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cSetLocalDescriptionFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-set-local-description-failed.html","searchKeys":["cSetLocalDescriptionFailed","const val cSetLocalDescriptionFailed: Int = 4003","live.hms.video.error.ErrorCodes.WebrtcErrors.cSetLocalDescriptionFailed"]},{"name":"const val cSetRemoteDescriptionFailed: Int = 4004","description":"live.hms.video.error.ErrorCodes.WebrtcErrors.cSetRemoteDescriptionFailed","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/c-set-remote-description-failed.html","searchKeys":["cSetRemoteDescriptionFailed","const val cSetRemoteDescriptionFailed: Int = 4004","live.hms.video.error.ErrorCodes.WebrtcErrors.cSetRemoteDescriptionFailed"]},{"name":"const val cSignalling: Int = 6001","description":"live.hms.video.error.ErrorCodes.GenericErrors.cSignalling","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-signalling.html","searchKeys":["cSignalling","const val cSignalling: Int = 6001","live.hms.video.error.ErrorCodes.GenericErrors.cSignalling"]},{"name":"const val cSubscribeIceRestartWaitTimeout: Long","description":"live.hms.video.utils.cSubscribeIceRestartWaitTimeout","location":"lib/live.hms.video.utils/c-subscribe-ice-restart-wait-timeout.html","searchKeys":["cSubscribeIceRestartWaitTimeout","const val cSubscribeIceRestartWaitTimeout: Long","live.hms.video.utils.cSubscribeIceRestartWaitTimeout"]},{"name":"const val cSubscribeRenegotiationCallback: String","description":"live.hms.video.utils.cSubscribeRenegotiationCallback","location":"lib/live.hms.video.utils/c-subscribe-renegotiation-callback.html","searchKeys":["cSubscribeRenegotiationCallback","const val cSubscribeRenegotiationCallback: String","live.hms.video.utils.cSubscribeRenegotiationCallback"]},{"name":"const val cTrackMetadataMissing: Int = 6005","description":"live.hms.video.error.ErrorCodes.GenericErrors.cTrackMetadataMissing","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-track-metadata-missing.html","searchKeys":["cTrackMetadataMissing","const val cTrackMetadataMissing: Int = 6005","live.hms.video.error.ErrorCodes.GenericErrors.cTrackMetadataMissing"]},{"name":"const val cUnknown: Int = 6002","description":"live.hms.video.error.ErrorCodes.GenericErrors.cUnknown","location":"lib/live.hms.video.error/-error-codes/-generic-errors/c-unknown.html","searchKeys":["cUnknown","const val cUnknown: Int = 6002","live.hms.video.error.ErrorCodes.GenericErrors.cUnknown"]},{"name":"const val cWebSocketConnectionLost: Int = 1003","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cWebSocketConnectionLost","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/c-web-socket-connection-lost.html","searchKeys":["cWebSocketConnectionLost","const val cWebSocketConnectionLost: Int = 1003","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors.cWebSocketConnectionLost"]},{"name":"data class AnalyticsCluster(var websocketUrl: String = \"\")","description":"live.hms.video.database.entity.AnalyticsCluster","location":"lib/live.hms.video.database.entity/-analytics-cluster/index.html","searchKeys":["AnalyticsCluster","data class AnalyticsCluster(var websocketUrl: String = \"\")","live.hms.video.database.entity.AnalyticsCluster"]},{"name":"data class AnalyticsPeer(var peerId: String? = null, var role: String? = null, var joinedAt: Long? = null, var leftAt: Long? = null, var roomName: String? = null, var sessionStartedAt: Long? = null, var userData: String? = null, var userName: String? = null, var templateId: String? = null, var sessionId: String? = null)","description":"live.hms.video.database.entity.AnalyticsPeer","location":"lib/live.hms.video.database.entity/-analytics-peer/index.html","searchKeys":["AnalyticsPeer","data class AnalyticsPeer(var peerId: String? = null, var role: String? = null, var joinedAt: Long? = null, var leftAt: Long? = null, var roomName: String? = null, var sessionStartedAt: Long? = null, var userData: String? = null, var userName: String? = null, var templateId: String? = null, var sessionId: String? = null)","live.hms.video.database.entity.AnalyticsPeer"]},{"name":"data class Audio : RemoteTrack","description":"live.hms.video.connection.degredation.Audio","location":"lib/live.hms.video.connection.degredation/-audio/index.html","searchKeys":["Audio","data class Audio : RemoteTrack","live.hms.video.connection.degredation.Audio"]},{"name":"data class AudioAnalytics(val audioSample: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/index.html","searchKeys":["AudioAnalytics","data class AudioAnalytics(val audioSample: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","live.hms.video.connection.stats.clientside.model.AudioAnalytics"]},{"name":"data class AudioParams(val bitRate: Int, val codec: HMSAudioCodec)","description":"live.hms.video.sdk.models.role.AudioParams","location":"lib/live.hms.video.sdk.models.role/-audio-params/index.html","searchKeys":["AudioParams","data class AudioParams(val bitRate: Int, val codec: HMSAudioCodec)","live.hms.video.sdk.models.role.AudioParams"]},{"name":"data class AudioSamplesPublish(val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long) : PublishBaseSamples","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/index.html","searchKeys":["AudioSamplesPublish","data class AudioSamplesPublish(val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long) : PublishBaseSamples","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish"]},{"name":"data class AudioSamplesSubscribe(val timestamp: Long, val audio_level_high_seconds: Long, val audio_concealed_samples: Long, val audio_total_samples_received: Long, val audio_concealment_events: Long, val fec_packets_discarded: Long, val fec_packets_received: Long, val total_samples_duration: Float, val total_packets_received: Long, val total_packets_lost: Long, val jitter_buffer_delay: Double) : SubscribeBaseSample","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/index.html","searchKeys":["AudioSamplesSubscribe","data class AudioSamplesSubscribe(val timestamp: Long, val audio_level_high_seconds: Long, val audio_concealed_samples: Long, val audio_total_samples_received: Long, val audio_concealment_events: Long, val fec_packets_discarded: Long, val fec_packets_received: Long, val total_samples_duration: Float, val total_packets_received: Long, val total_packets_lost: Long, val jitter_buffer_delay: Double) : SubscribeBaseSample","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe"]},{"name":"data class Browser(val enabled: Boolean?, val startedAt: Long?, val stoppedAt: Long?, val initialisedAt: Long?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Browser","location":"lib/live.hms.video.sdk.peerlist.models/-browser/index.html","searchKeys":["Browser","data class Browser(val enabled: Boolean?, val startedAt: Long?, val stoppedAt: Long?, val initialisedAt: Long?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Browser"]},{"name":"data class Chat(val allowPinningMessages: Boolean?, val initialState: String?, val overlayView: Boolean?, val publicChatEnabled: Boolean, val rolesWhiteList: List?, val privateChatEnabled: Boolean, val chatTitle: String, val messagePlaceholder: String, val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/index.html","searchKeys":["Chat","data class Chat(val allowPinningMessages: Boolean?, val initialState: String?, val overlayView: Boolean?, val publicChatEnabled: Boolean, val rolesWhiteList: List?, val privateChatEnabled: Boolean, val chatTitle: String, val messagePlaceholder: String, val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat"]},{"name":"data class Conferencing(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/index.html","searchKeys":["Conferencing","data class Conferencing(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing"]},{"name":"data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/index.html","searchKeys":["Default","data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default"]},{"name":"data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/index.html","searchKeys":["Default","data class Default(val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default"]},{"name":"data class Elements(val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/index.html","searchKeys":["Elements","data class Elements(val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements"]},{"name":"data class Elements(val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/index.html","searchKeys":["Elements","data class Elements(val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements"]},{"name":"data class ErrorTokenResult(val errorMessage: String?)","description":"live.hms.video.signal.init.ErrorTokenResult","location":"lib/live.hms.video.signal.init/-error-token-result/index.html","searchKeys":["ErrorTokenResult","data class ErrorTokenResult(val errorMessage: String?)","live.hms.video.signal.init.ErrorTokenResult"]},{"name":"data class FrameworkInfo(val framework: AgentType, val frameworkSdkVersion: String? = null, val frameworkVersion: String? = null, val isPrebuilt: Boolean)","description":"live.hms.video.sdk.models.FrameworkInfo","location":"lib/live.hms.video.sdk.models/-framework-info/index.html","searchKeys":["FrameworkInfo","data class FrameworkInfo(val framework: AgentType, val frameworkSdkVersion: String? = null, val frameworkVersion: String? = null, val isPrebuilt: Boolean)","live.hms.video.sdk.models.FrameworkInfo"]},{"name":"data class Grid(val enableLocalTileInset: Boolean?, val enableSpotlightingPeer: Boolean?, val prominentRoles: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/index.html","searchKeys":["Grid","data class Grid(val enableLocalTileInset: Boolean?, val enableSpotlightingPeer: Boolean?, val prominentRoles: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid"]},{"name":"data class GroupJoinLeaveResponse(val groups: ArrayList?)","description":"live.hms.video.groups.GroupJoinLeaveResponse","location":"lib/live.hms.video.groups/-group-join-leave-response/index.html","searchKeys":["GroupJoinLeaveResponse","data class GroupJoinLeaveResponse(val groups: ArrayList?)","live.hms.video.groups.GroupJoinLeaveResponse"]},{"name":"data class HLSLiveStreamingHeader(val title: String?, val description: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/index.html","searchKeys":["HLSLiveStreamingHeader","data class HLSLiveStreamingHeader(val title: String?, val description: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader"]},{"name":"data class HMSAudioDeviceInfo(val type: HMSAudioManager.AudioDevice, val name: String)","description":"live.hms.video.audio.HMSAudioDeviceInfo","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/index.html","searchKeys":["HMSAudioDeviceInfo","data class HMSAudioDeviceInfo(val type: HMSAudioManager.AudioDevice, val name: String)","live.hms.video.audio.HMSAudioDeviceInfo"]},{"name":"data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/index.html","searchKeys":["HMSBackgroundMedia","data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia"]},{"name":"data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/index.html","searchKeys":["HMSBackgroundMedia","data class HMSBackgroundMedia(val default: Boolean?, val url: String?, val mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia"]},{"name":"data class HMSBrowserRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, val initialising: Boolean = false, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSBrowserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/index.html","searchKeys":["HMSBrowserRecordingState","data class HMSBrowserRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, val initialising: Boolean = false, val state: HMSRecordingState)","live.hms.video.sdk.models.HMSBrowserRecordingState"]},{"name":"data class HMSChangeTrackStateRequest(val track: HMSTrack, val requestedBy: HMSPeer?, val mute: Boolean)","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/index.html","searchKeys":["HMSChangeTrackStateRequest","data class HMSChangeTrackStateRequest(val track: HMSTrack, val requestedBy: HMSPeer?, val mute: Boolean)","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest"]},{"name":"data class HMSColorPalette(val alertErrorBright: String?, val alertErrorBrighter: String?, val alertErrorDefault: String?, val alertErrorDim: String?, val alertSuccess: String?, val alertWarning: String?, val backgroundDefault: String?, val backgroundDim: String?, val borderBright: String?, val borderDefault: String?, val onPrimaryHigh: String?, val onPrimaryLow: String?, val onPrimaryMedium: String?, val onSecondaryHigh: String?, val onSecondaryLow: String?, val onSecondaryMedium: String?, val onSurfaceHigh: String?, val onSurfaceLow: String?, val onSurfaceMedium: String?, val primaryBright: String?, val primaryDefault: String?, val primaryDim: String?, val primaryDisabled: String?, val secondaryBright: String?, val secondaryDefault: String?, val secondaryDim: String?, val secondaryDisabled: String?, val surfaceBright: String?, val surfaceBrighter: String?, val surfaceDefault: String?, val surfaceDim: String?, val borderLight: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/index.html","searchKeys":["HMSColorPalette","data class HMSColorPalette(val alertErrorBright: String?, val alertErrorBrighter: String?, val alertErrorDefault: String?, val alertErrorDim: String?, val alertSuccess: String?, val alertWarning: String?, val backgroundDefault: String?, val backgroundDim: String?, val borderBright: String?, val borderDefault: String?, val onPrimaryHigh: String?, val onPrimaryLow: String?, val onPrimaryMedium: String?, val onSecondaryHigh: String?, val onSecondaryLow: String?, val onSecondaryMedium: String?, val onSurfaceHigh: String?, val onSurfaceLow: String?, val onSurfaceMedium: String?, val primaryBright: String?, val primaryDefault: String?, val primaryDim: String?, val primaryDisabled: String?, val secondaryBright: String?, val secondaryDefault: String?, val secondaryDim: String?, val secondaryDisabled: String?, val surfaceBright: String?, val surfaceBrighter: String?, val surfaceDefault: String?, val surfaceDim: String?, val borderLight: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette"]},{"name":"data class HMSConfig constructor(val userName: String, val authtoken: String, var metadata: String = \"\", var captureNetworkQualityInPreview: Boolean = false, val initEndpoint: String = cDefaultInitEndpoint)","description":"live.hms.video.sdk.models.HMSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-config/index.html","searchKeys":["HMSConfig","data class HMSConfig constructor(val userName: String, val authtoken: String, var metadata: String = \"\", var captureNetworkQualityInPreview: Boolean = false, val initEndpoint: String = cDefaultInitEndpoint)","live.hms.video.sdk.models.HMSConfig"]},{"name":"data class HMSCreateWhiteBoardResponse(val id: String?, val owner: String?)","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/index.html","searchKeys":["HMSCreateWhiteBoardResponse","data class HMSCreateWhiteBoardResponse(val id: String?, val owner: String?)","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse"]},{"name":"data class HMSGetWhiteBoardResponse(val id: String?, val addr: String?, val token: String?, val owner: String?, val permissions: List?)","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/index.html","searchKeys":["HMSGetWhiteBoardResponse","data class HMSGetWhiteBoardResponse(val id: String?, val addr: String?, val token: String?, val owner: String?, val permissions: List?)","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse"]},{"name":"data class HMSHLSConfig(val meetingURLVariants: List? = null, val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","description":"live.hms.video.sdk.models.HMSHLSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/index.html","searchKeys":["HMSHLSConfig","data class HMSHLSConfig(val meetingURLVariants: List? = null, val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","live.hms.video.sdk.models.HMSHLSConfig"]},{"name":"data class HMSHLSMeetingURLVariant(val meetingUrl: String? = null, val metadata: String = \"\")","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/index.html","searchKeys":["HMSHLSMeetingURLVariant","data class HMSHLSMeetingURLVariant(val meetingUrl: String? = null, val metadata: String = \"\")","live.hms.video.sdk.models.HMSHLSMeetingURLVariant"]},{"name":"data class HMSHLSStreamingState(val running: Boolean, val variants: ArrayList?, val error: HMSException?, val state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSHLSStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/index.html","searchKeys":["HMSHLSStreamingState","data class HMSHLSStreamingState(val running: Boolean, val variants: ArrayList?, val error: HMSException?, val state: HMSStreamingState)","live.hms.video.sdk.models.HMSHLSStreamingState"]},{"name":"data class HMSHLSTimedMetadata(val payload: String, val duration: Long)","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/index.html","searchKeys":["HMSHLSTimedMetadata","data class HMSHLSTimedMetadata(val payload: String, val duration: Long)","live.hms.video.sdk.models.HMSHLSTimedMetadata"]},{"name":"data class HMSHLSVariant(val hlsStreamUrl: String?, val meetingUrl: String?, val metadata: String?, val startedAt: Long?, val updatedAt: Long?, state: BeamStreamingStates?, val playlistType: HMSHLSPlaylistType?)","description":"live.hms.video.sdk.models.HMSHLSVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/index.html","searchKeys":["HMSHLSVariant","data class HMSHLSVariant(val hlsStreamUrl: String?, val meetingUrl: String?, val metadata: String?, val startedAt: Long?, val updatedAt: Long?, state: BeamStreamingStates?, val playlistType: HMSHLSPlaylistType?)","live.hms.video.sdk.models.HMSHLSVariant"]},{"name":"data class HMSHlsRecordingConfig(val singleFilePerLayer: Boolean, val videoOnDemand: Boolean)","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/index.html","searchKeys":["HMSHlsRecordingConfig","data class HMSHlsRecordingConfig(val singleFilePerLayer: Boolean, val videoOnDemand: Boolean)","live.hms.video.sdk.models.HMSHlsRecordingConfig"]},{"name":"data class HMSLayoutOptions(val key1: String?, val key2: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/index.html","searchKeys":["HMSLayoutOptions","data class HMSLayoutOptions(val key1: String?, val key2: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions"]},{"name":"data class HMSLocalAudioStats(val jitter: Double?, val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val packetLoss: Long?, val packetsSent: Long?) : HMSStats.HMSLocalStats","description":"live.hms.video.connection.stats.HMSLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/index.html","searchKeys":["HMSLocalAudioStats","data class HMSLocalAudioStats(val jitter: Double?, val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val packetLoss: Long?, val packetsSent: Long?) : HMSStats.HMSLocalStats","live.hms.video.connection.stats.HMSLocalAudioStats"]},{"name":"data class HMSLocalVideoStats(val jitter: Double?, val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val resolution: HMSVideoResolution?, val frameRate: Double?, val qualityLimitationReason: QualityLimitationReasons, val hmsLayer: HMSLayer?, val packetLoss: Long?, val packetsSent: Long?) : HMSStats.HMSLocalStats","description":"live.hms.video.connection.stats.HMSLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/index.html","searchKeys":["HMSLocalVideoStats","data class HMSLocalVideoStats(val jitter: Double?, val roundTripTime: Double?, val bytesSent: Long?, val bitrate: Double?, val resolution: HMSVideoResolution?, val frameRate: Double?, val qualityLimitationReason: QualityLimitationReasons, val hmsLayer: HMSLayer?, val packetLoss: Long?, val packetsSent: Long?) : HMSStats.HMSLocalStats","live.hms.video.connection.stats.HMSLocalVideoStats"]},{"name":"data class HMSLogSettings(val maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, val isLogStorageEnabled: Boolean = false, val level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","description":"live.hms.video.media.settings.HMSLogSettings","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/index.html","searchKeys":["HMSLogSettings","data class HMSLogSettings(val maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, val isLogStorageEnabled: Boolean = false, val level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","live.hms.video.media.settings.HMSLogSettings"]},{"name":"data class HMSMessage","description":"live.hms.video.sdk.models.HMSMessage","location":"lib/live.hms.video.sdk.models/-h-m-s-message/index.html","searchKeys":["HMSMessage","data class HMSMessage","live.hms.video.sdk.models.HMSMessage"]},{"name":"data class HMSMessageSendResponse(val timestamp: Long, val messageId: String? = \"\")","description":"live.hms.video.sdk.models.HMSMessageSendResponse","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/index.html","searchKeys":["HMSMessageSendResponse","data class HMSMessageSendResponse(val timestamp: Long, val messageId: String? = \"\")","live.hms.video.sdk.models.HMSMessageSendResponse"]},{"name":"data class HMSNetworkQuality(val downlinkQuality: Int)","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/index.html","searchKeys":["HMSNetworkQuality","data class HMSNetworkQuality(val downlinkQuality: Int)","live.hms.video.connection.stats.quality.HMSNetworkQuality"]},{"name":"data class HMSPollLeaderboardEntry(val position: Long?, val score: Long?, val totalResponses: Long?, val correctResponses: Long?, val duration: Long?, val peer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/index.html","searchKeys":["HMSPollLeaderboardEntry","data class HMSPollLeaderboardEntry(val position: Long?, val score: Long?, val totalResponses: Long?, val correctResponses: Long?, val duration: Long?, val peer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.HMSPollLeaderboardEntry"]},{"name":"data class HMSPollLeaderboardResponse(val pollId: String, val last: Boolean?, val leaderboard: List?, val totalUsers: Long?, val votedUsers: Long?, val correctUsers: Long?, val avgTime: Long?, val avgScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/index.html","searchKeys":["HMSPollLeaderboardResponse","data class HMSPollLeaderboardResponse(val pollId: String, val last: Boolean?, val leaderboard: List?, val totalUsers: Long?, val votedUsers: Long?, val correctUsers: Long?, val avgTime: Long?, val avgScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardResponse"]},{"name":"data class HMSPollLeaderboardSummary(val totalPeersCount: Int?, val respondedPeersCount: Int?, val respondedCorrectlyPeersCount: Int?, val averageTime: Long?, val averageScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/index.html","searchKeys":["HMSPollLeaderboardSummary","data class HMSPollLeaderboardSummary(val totalPeersCount: Int?, val respondedPeersCount: Int?, val respondedCorrectlyPeersCount: Int?, val averageTime: Long?, val averageScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardSummary"]},{"name":"data class HMSPollQuestion(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 0, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = null, val options: List? = null, val correctAnswer: HMSPollQuestionAnswer? = null, val negative: Boolean = false, val myResponses: MutableList = mutableListOf())","description":"live.hms.video.polls.models.question.HMSPollQuestion","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/index.html","searchKeys":["HMSPollQuestion","data class HMSPollQuestion(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 0, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = null, val options: List? = null, val correctAnswer: HMSPollQuestionAnswer? = null, val negative: Boolean = false, val myResponses: MutableList = mutableListOf())","live.hms.video.polls.models.question.HMSPollQuestion"]},{"name":"data class HMSPollQuestionAnswer(val hidden: Boolean = false, val option: Int? = null, val options: List? = null, val text: String = \"\", val caseSensitive: Boolean = false, val emptySpaceTrimmed: Boolean = false)","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/index.html","searchKeys":["HMSPollQuestionAnswer","data class HMSPollQuestionAnswer(val hidden: Boolean = false, val option: Int? = null, val options: List? = null, val text: String = \"\", val caseSensitive: Boolean = false, val emptySpaceTrimmed: Boolean = false)","live.hms.video.polls.models.answer.HMSPollQuestionAnswer"]},{"name":"data class HMSPollQuestionOption(val index: Int, val text: String? = \"\", val weight: Int? = null, val case: Boolean = false, val trim: Boolean = false, var voteCount: Long = 0)","description":"live.hms.video.polls.models.question.HMSPollQuestionOption","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/index.html","searchKeys":["HMSPollQuestionOption","data class HMSPollQuestionOption(val index: Int, val text: String? = \"\", val weight: Int? = null, val case: Boolean = false, val trim: Boolean = false, var voteCount: Long = 0)","live.hms.video.polls.models.question.HMSPollQuestionOption"]},{"name":"data class HMSPollQuestionResponse(val responseId: String, val index: Int, val questionType: HMSPollQuestionType, val skipped: Boolean, val selectedOption: Int?, val selectedOptions: List?, val text: String?, val answerChanged: Boolean)","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/index.html","searchKeys":["HMSPollQuestionResponse","data class HMSPollQuestionResponse(val responseId: String, val index: Int, val questionType: HMSPollQuestionType, val skipped: Boolean, val selectedOption: Int?, val selectedOptions: List?, val text: String?, val answerChanged: Boolean)","live.hms.video.polls.models.network.HMSPollQuestionResponse"]},{"name":"data class HMSPollResponsePeerInfo(val hash: String, val peerid: String?, val userid: String?, val username: String?)","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/index.html","searchKeys":["HMSPollResponsePeerInfo","data class HMSPollResponsePeerInfo(val hash: String, val peerid: String?, val userid: String?, val username: String?)","live.hms.video.polls.models.network.HMSPollResponsePeerInfo"]},{"name":"data class HMSRTCStats(val bytesSent: Long, val bytesReceived: Long, val packetsReceived: Long, val packetsLost: Long, val bitrateSent: Double, val bitrateReceived: Double, val roundTripTime: Double)","description":"live.hms.video.connection.stats.HMSRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/index.html","searchKeys":["HMSRTCStats","data class HMSRTCStats(val bytesSent: Long, val bytesReceived: Long, val packetsReceived: Long, val packetsLost: Long, val bitrateSent: Double, val bitrateReceived: Double, val roundTripTime: Double)","live.hms.video.connection.stats.HMSRTCStats"]},{"name":"data class HMSRTCStatsReport(val combined: HMSRTCStats, val audio: HMSRTCStats, val video: HMSRTCStats)","description":"live.hms.video.connection.stats.HMSRTCStatsReport","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/index.html","searchKeys":["HMSRTCStatsReport","data class HMSRTCStatsReport(val combined: HMSRTCStats, val audio: HMSRTCStats, val video: HMSRTCStats)","live.hms.video.connection.stats.HMSRTCStatsReport"]},{"name":"data class HMSRecordingConfig(val meetingUrl: String? = null, val rtmpUrls: List, val record: Boolean, val resolution: HMSRtmpVideoResolution? = null)","description":"live.hms.video.sdk.models.HMSRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/index.html","searchKeys":["HMSRecordingConfig","data class HMSRecordingConfig(val meetingUrl: String? = null, val rtmpUrls: List, val record: Boolean, val resolution: HMSRtmpVideoResolution? = null)","live.hms.video.sdk.models.HMSRecordingConfig"]},{"name":"data class HMSRemoteAudioStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?) : HMSStats.HMSRemoteStats","description":"live.hms.video.connection.stats.HMSRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/index.html","searchKeys":["HMSRemoteAudioStats","data class HMSRemoteAudioStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?) : HMSStats.HMSRemoteStats","live.hms.video.connection.stats.HMSRemoteAudioStats"]},{"name":"data class HMSRemoteVideoStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?, val resolution: HMSVideoResolution?, val frameRate: Double?) : HMSStats.HMSRemoteStats","description":"live.hms.video.connection.stats.HMSRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/index.html","searchKeys":["HMSRemoteVideoStats","data class HMSRemoteVideoStats(val jitter: Double?, val bytesReceived: Long?, val bitrate: Double?, val packetsReceived: Long?, val packetsLost: Int?, val resolution: HMSVideoResolution?, val frameRate: Double?) : HMSStats.HMSRemoteStats","live.hms.video.connection.stats.HMSRemoteVideoStats"]},{"name":"data class HMSRemovedFromRoom(val reason: String, val peerWhoRemoved: HMSPeer?, val roomWasEnded: Boolean)","description":"live.hms.video.sdk.models.HMSRemovedFromRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/index.html","searchKeys":["HMSRemovedFromRoom","data class HMSRemovedFromRoom(val reason: String, val peerWhoRemoved: HMSPeer?, val roomWasEnded: Boolean)","live.hms.video.sdk.models.HMSRemovedFromRoom"]},{"name":"data class HMSRole","description":"live.hms.video.sdk.models.role.HMSRole","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/index.html","searchKeys":["HMSRole","data class HMSRole","live.hms.video.sdk.models.role.HMSRole"]},{"name":"data class HMSRoleChangeRequest","description":"live.hms.video.sdk.models.HMSRoleChangeRequest","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/index.html","searchKeys":["HMSRoleChangeRequest","data class HMSRoleChangeRequest","live.hms.video.sdk.models.HMSRoleChangeRequest"]},{"name":"data class HMSRoom","description":"live.hms.video.sdk.models.HMSRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-room/index.html","searchKeys":["HMSRoom","data class HMSRoom","live.hms.video.sdk.models.HMSRoom"]},{"name":"data class HMSRoomLayout(val data: List?, val last: String?)","description":"live.hms.video.signal.init.HMSRoomLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/index.html","searchKeys":["HMSRoomLayout","data class HMSRoomLayout(val data: List?, val last: String?)","live.hms.video.signal.init.HMSRoomLayout"]},{"name":"data class HMSRoomLayoutData(val appId: String?, val id: String?, val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, val role: String?, val roleId: String?, val templateId: String?, val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, val themes: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/index.html","searchKeys":["HMSRoomLayoutData","data class HMSRoomLayoutData(val appId: String?, val id: String?, val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, val role: String?, val roleId: String?, val templateId: String?, val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, val themes: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData"]},{"name":"data class HMSRoomTheme(val default: Boolean?, val name: String?, val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/index.html","searchKeys":["HMSRoomTheme","data class HMSRoomTheme(val default: Boolean?, val name: String?, val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme"]},{"name":"data class HMSRtmpStreamingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, var state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/index.html","searchKeys":["HMSRtmpStreamingState","data class HMSRtmpStreamingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val stoppedAt: Long?, var state: HMSStreamingState)","live.hms.video.sdk.models.HMSRtmpStreamingState"]},{"name":"data class HMSRtmpVideoResolution(val width: Int, val height: Int)","description":"live.hms.video.media.settings.HMSRtmpVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/index.html","searchKeys":["HMSRtmpVideoResolution","data class HMSRtmpVideoResolution(val width: Int, val height: Int)","live.hms.video.media.settings.HMSRtmpVideoResolution"]},{"name":"data class HMSServerRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSServerRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/index.html","searchKeys":["HMSServerRecordingState","data class HMSServerRecordingState(val running: Boolean, val error: HMSException?, val startedAt: Long?, val state: HMSRecordingState)","live.hms.video.sdk.models.HMSServerRecordingState"]},{"name":"data class HMSSimulcastLayerDefinition(val resolution: HMSVideoResolution, val layer: HMSLayer)","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/index.html","searchKeys":["HMSSimulcastLayerDefinition","data class HMSSimulcastLayerDefinition(val resolution: HMSVideoResolution, val layer: HMSLayer)","live.hms.video.media.settings.HMSSimulcastLayerDefinition"]},{"name":"data class HMSSpeaker","description":"live.hms.video.sdk.models.HMSSpeaker","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/index.html","searchKeys":["HMSSpeaker","data class HMSSpeaker","live.hms.video.sdk.models.HMSSpeaker"]},{"name":"data class HMSVideoResolution(var width: Int, var height: Int)","description":"live.hms.video.media.settings.HMSVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/index.html","searchKeys":["HMSVideoResolution","data class HMSVideoResolution(var width: Int, var height: Int)","live.hms.video.media.settings.HMSVideoResolution"]},{"name":"data class HMSVirtualBackground(val backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","data class HMSVirtualBackground(val backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground"]},{"name":"data class HMSVirtualBackground(val backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","data class HMSVirtualBackground(val backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground"]},{"name":"data class HMSWhiteBoardPermission(var admin: Boolean, var read: Boolean, var write: Boolean)","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/index.html","searchKeys":["HMSWhiteBoardPermission","data class HMSWhiteBoardPermission(var admin: Boolean, var read: Boolean, var write: Boolean)","live.hms.video.sdk.models.role.HMSWhiteBoardPermission"]},{"name":"data class HMSWhiteboard(val id: String, val title: String? = null, val owner: HMSPeer? = null, val isOwner: Boolean, val url: String, val state: State = State.Stopped)","description":"live.hms.video.whiteboard.HMSWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/index.html","searchKeys":["HMSWhiteboard","data class HMSWhiteboard(val id: String, val title: String? = null, val owner: HMSPeer? = null, val isOwner: Boolean, val url: String, val state: State = State.Stopped)","live.hms.video.whiteboard.HMSWhiteboard"]},{"name":"data class HMSWhiteboardPermissions(val admin: List, val reader: List, val writer: List)","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/index.html","searchKeys":["HMSWhiteboardPermissions","data class HMSWhiteboardPermissions(val admin: List, val reader: List, val writer: List)","live.hms.video.whiteboard.HMSWhiteboardPermissions"]},{"name":"data class Hls(val enabled: Boolean, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Hls","location":"lib/live.hms.video.sdk.peerlist.models/-hls/index.html","searchKeys":["Hls","data class Hls(val enabled: Boolean, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Hls"]},{"name":"data class HmsHlsRecordingState(val running: Boolean?, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val error: HMSException?, val state: HMSRecordingState)","description":"live.hms.video.sdk.models.HmsHlsRecordingState","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/index.html","searchKeys":["HmsHlsRecordingState","data class HmsHlsRecordingState(val running: Boolean?, val startedAt: Long?, val hlsRecordingConfig: HMSHlsRecordingConfig?, val error: HMSException?, val state: HMSRecordingState)","live.hms.video.sdk.models.HmsHlsRecordingState"]},{"name":"data class HmsPoll","description":"live.hms.video.polls.models.HmsPoll","location":"lib/live.hms.video.polls.models/-hms-poll/index.html","searchKeys":["HmsPoll","data class HmsPoll","live.hms.video.polls.models.HmsPoll"]},{"name":"data class HmsPollAnswer(val questionId: Int, val questionType: HMSPollQuestionType, val skipped: Boolean = false, val selectedOption: Int = 0, val selectedOptions: List? = null, val answerText: String = \"\", val update: Boolean = false, val durationMillis: Long? = null)","description":"live.hms.video.polls.models.answer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/index.html","searchKeys":["HmsPollAnswer","data class HmsPollAnswer(val questionId: Int, val questionType: HMSPollQuestionType, val skipped: Boolean = false, val selectedOption: Int = 0, val selectedOptions: List? = null, val answerText: String = \"\", val update: Boolean = false, val durationMillis: Long? = null)","live.hms.video.polls.models.answer.HmsPollAnswer"]},{"name":"data class HmsPollCreationParams(val pollId: String? = null, val title: String, val duration: Long = 0, val anonymous: Boolean = false, val visibility: Boolean = true, val locked: Boolean = false, val mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, val vote: List? = null, val responses: List? = null, val category: HmsPollCategory)","description":"live.hms.video.polls.models.HmsPollCreationParams","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/index.html","searchKeys":["HmsPollCreationParams","data class HmsPollCreationParams(val pollId: String? = null, val title: String, val duration: Long = 0, val anonymous: Boolean = false, val visibility: Boolean = true, val locked: Boolean = false, val mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, val vote: List? = null, val responses: List? = null, val category: HmsPollCategory)","live.hms.video.polls.models.HmsPollCreationParams"]},{"name":"data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/index.html","searchKeys":["HmsPollQuestionContainer","data class HmsPollQuestionContainer(val question: HMSPollQuestion, val options: List? = question.options, val correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","live.hms.video.polls.models.question.HmsPollQuestionContainer"]},{"name":"data class HmsPollQuestionCreation(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 1, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = 1, val negative: Boolean = false)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/index.html","searchKeys":["HmsPollQuestionCreation","data class HmsPollQuestionCreation(val questionID: Int, val type: HMSPollQuestionType, val text: String, val canSkip: Boolean = false, val canChangeResponse: Boolean = true, val duration: Long = 0, val weight: Int = 1, val answerShortMinLength: Long? = 1, val answerLongMinLength: Long? = 1, val negative: Boolean = false)","live.hms.video.polls.models.question.HmsPollQuestionCreation"]},{"name":"data class HmsPollQuestionSettingContainer(val questionContainer: HmsPollQuestionCreation, val options: List?, val correctAnswer: HMSPollQuestionAnswer?)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/index.html","searchKeys":["HmsPollQuestionSettingContainer","data class HmsPollQuestionSettingContainer(val questionContainer: HmsPollQuestionCreation, val options: List?, val correctAnswer: HMSPollQuestionAnswer?)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer"]},{"name":"data class HmsTranscript(val start: Int, val end: Int, val transcript: String, val peerId: String, val isFinal: Boolean)","description":"live.hms.video.sdk.transcripts.HmsTranscript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/index.html","searchKeys":["HmsTranscript","data class HmsTranscript(val start: Int, val end: Int, val transcript: String, val peerId: String, val isFinal: Boolean)","live.hms.video.sdk.transcripts.HmsTranscript"]},{"name":"data class HmsTranscripts(val transcripts: List)","description":"live.hms.video.sdk.transcripts.HmsTranscripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/index.html","searchKeys":["HmsTranscripts","data class HmsTranscripts(val transcripts: List)","live.hms.video.sdk.transcripts.HmsTranscripts"]},{"name":"data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/index.html","searchKeys":["ImageCaptureModel","data class ImageCaptureModel(val image: Image, val metadata: CaptureResult, val orientation: Int?, val format: Int) : Closeable","live.hms.video.media.capturers.camera.utils.ImageCaptureModel"]},{"name":"data class Item(val bitrate: Int, val frameRate: Int)","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/index.html","searchKeys":["Item","data class Item(val bitrate: Int, val frameRate: Int)","live.hms.video.media.settings.HMSSimulcastSettings.Item"]},{"name":"data class JoinForm(val goLiveBtnLabel: String?, val joinBtnLabel: String?, val joinBtnType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/index.html","searchKeys":["JoinForm","data class JoinForm(val goLiveBtnLabel: String?, val joinBtnLabel: String?, val joinBtnType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm"]},{"name":"data class LastTrackState(val isLocalVideoMuted: Boolean, val isLocalAudioMuted: Boolean, val isScreenSharePublished: Boolean, val isCameraFacing: HMSVideoTrackSettings.CameraFacing)","description":"live.hms.video.sdk.models.LastTrackState","location":"lib/live.hms.video.sdk.models/-last-track-state/index.html","searchKeys":["LastTrackState","data class LastTrackState(val isLocalVideoMuted: Boolean, val isLocalAudioMuted: Boolean, val isScreenSharePublished: Boolean, val isCameraFacing: HMSVideoTrackSettings.CameraFacing)","live.hms.video.sdk.models.LastTrackState"]},{"name":"data class LayerParams(val rid: String?, val scaleResolutionDownBy: Float?, val maxBitrate: Int?, val maxFramerate: Int?)","description":"live.hms.video.sdk.models.role.LayerParams","location":"lib/live.hms.video.sdk.models.role/-layer-params/index.html","searchKeys":["LayerParams","data class LayerParams(val rid: String?, val scaleResolutionDownBy: Float?, val maxBitrate: Int?, val maxFramerate: Int?)","live.hms.video.sdk.models.role.LayerParams"]},{"name":"data class LayoutRequestOptions(val endpoint: String?)","description":"live.hms.video.signal.init.LayoutRequestOptions","location":"lib/live.hms.video.signal.init/-layout-request-options/index.html","searchKeys":["LayoutRequestOptions","data class LayoutRequestOptions(val endpoint: String?)","live.hms.video.signal.init.LayoutRequestOptions"]},{"name":"data class LeaderboardQuestion(val questionIndex: Long?, val position: Long?, val duration: Long?, val totalResponse: Long?, val correctResponses: Long?, val score: Float?, val pollPeer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.LeaderboardQuestion","location":"lib/live.hms.video.polls.network/-leaderboard-question/index.html","searchKeys":["LeaderboardQuestion","data class LeaderboardQuestion(val questionIndex: Long?, val position: Long?, val duration: Long?, val totalResponse: Long?, val correctResponses: Long?, val score: Float?, val pollPeer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.LeaderboardQuestion"]},{"name":"data class LocalAudio : Track.LocalTrack","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/index.html","searchKeys":["LocalAudio","data class LocalAudio : Track.LocalTrack","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio"]},{"name":"data class LocalVideo : Track.LocalTrack","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/index.html","searchKeys":["LocalVideo","data class LocalVideo : Track.LocalTrack","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo"]},{"name":"data class Logo(val url: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/index.html","searchKeys":["Logo","data class Logo(val url: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo"]},{"name":"data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap)","description":"live.hms.video.signal.init.NetworkHealth","location":"lib/live.hms.video.signal.init/-network-health/index.html","searchKeys":["NetworkHealth","data class NetworkHealth(val timeout: Long, val url: String, val scoreMap: SortedMap)","live.hms.video.signal.init.NetworkHealth"]},{"name":"data class NoiseCancellationElement(val enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/index.html","searchKeys":["NoiseCancellationElement","data class NoiseCancellationElement(val enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement"]},{"name":"data class NoiseCancellationElement(val enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/index.html","searchKeys":["NoiseCancellationElement","data class NoiseCancellationElement(val enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement"]},{"name":"data class NotAvailable(val reason: String) : AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/index.html","searchKeys":["NotAvailable","data class NotAvailable(val reason: String) : AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable"]},{"name":"data class OnStageExp(val bringToStageLabel: String?, val offStageRoles: List?, val onStageRole: String?, val removeFromStageLabel: String?, val skipPreviewForRoleChange: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/index.html","searchKeys":["OnStageExp","data class OnStageExp(val bringToStageLabel: String?, val offStageRoles: List?, val onStageRole: String?, val removeFromStageLabel: String?, val skipPreviewForRoleChange: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp"]},{"name":"data class OnTranscriptionError(val code: Int?, val message: String?)","description":"live.hms.video.sdk.models.OnTranscriptionError","location":"lib/live.hms.video.sdk.models/-on-transcription-error/index.html","searchKeys":["OnTranscriptionError","data class OnTranscriptionError(val code: Int?, val message: String?)","live.hms.video.sdk.models.OnTranscriptionError"]},{"name":"data class PacketLossTracks(val ssrc: Long?, val packetLoss: Int?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/index.html","searchKeys":["PacketLossTracks","data class PacketLossTracks(val ssrc: Long?, val packetLoss: Int?)","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks"]},{"name":"data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats","description":"live.hms.video.connection.degredation.Peer","location":"lib/live.hms.video.connection.degredation/-peer/index.html","searchKeys":["Peer","data class Peer(val bytesSent: BigInteger?, val packetsSent: BigInteger?, val bytesReceived: BigInteger?, val packetsReceived: BigInteger?, val totalRoundTripTime: Double?, val currentRoundTripTime: Double?, val availableOutgoingBitrate: Double?, val availableIncomingBitrate: Double?, val timestampUs: Double?) : WebrtcStats","live.hms.video.connection.degredation.Peer"]},{"name":"data class PeerListIteratorOptions(val byGroupName: String? = null, val byRoleName: String? = null, val byPeerIds: ArrayList? = null, val limit: Int = 10)","description":"live.hms.video.sdk.models.PeerListIteratorOptions","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/index.html","searchKeys":["PeerListIteratorOptions","data class PeerListIteratorOptions(val byGroupName: String? = null, val byRoleName: String? = null, val byPeerIds: ArrayList? = null, val limit: Int = 10)","live.hms.video.sdk.models.PeerListIteratorOptions"]},{"name":"data class PermissionsParams(val endRoom: Boolean = false, val removeOthers: Boolean = false, val unmute: Boolean = false, val mute: Boolean = false, val changeRole: Boolean = false, val browserRecording: Boolean = false, val rtmpStreaming: Boolean = false, val hlsStreaming: Boolean = false, val pollRead: Boolean = false, val pollWrite: Boolean = false, val whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","description":"live.hms.video.sdk.models.role.PermissionsParams","location":"lib/live.hms.video.sdk.models.role/-permissions-params/index.html","searchKeys":["PermissionsParams","data class PermissionsParams(val endRoom: Boolean = false, val removeOthers: Boolean = false, val unmute: Boolean = false, val mute: Boolean = false, val changeRole: Boolean = false, val browserRecording: Boolean = false, val rtmpStreaming: Boolean = false, val hlsStreaming: Boolean = false, val pollRead: Boolean = false, val pollWrite: Boolean = false, val whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","live.hms.video.sdk.models.role.PermissionsParams"]},{"name":"data class PollAnswerItem(val questionIndex: Int, val correct: Boolean, val error: HMSException?)","description":"live.hms.video.polls.models.answer.PollAnswerItem","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/index.html","searchKeys":["PollAnswerItem","data class PollAnswerItem(val questionIndex: Int, val correct: Boolean, val error: HMSException?)","live.hms.video.polls.models.answer.PollAnswerItem"]},{"name":"data class PollAnswerResponse(val pollId: String, val result: List, val version: String)","description":"live.hms.video.polls.models.answer.PollAnswerResponse","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/index.html","searchKeys":["PollAnswerResponse","data class PollAnswerResponse(val pollId: String, val result: List, val version: String)","live.hms.video.polls.models.answer.PollAnswerResponse"]},{"name":"data class PollCreateResponse(val pollId: String, val version: String)","description":"live.hms.video.polls.network.PollCreateResponse","location":"lib/live.hms.video.polls.network/-poll-create-response/index.html","searchKeys":["PollCreateResponse","data class PollCreateResponse(val pollId: String, val version: String)","live.hms.video.polls.network.PollCreateResponse"]},{"name":"data class PollGetResponsesReply(val pollId: String, val version: String, val isLast: Boolean, val responses: List)","description":"live.hms.video.polls.network.PollGetResponsesReply","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/index.html","searchKeys":["PollGetResponsesReply","data class PollGetResponsesReply(val pollId: String, val version: String, val isLast: Boolean, val responses: List)","live.hms.video.polls.network.PollGetResponsesReply"]},{"name":"data class PollLeaderboardResponse(val entries: List?, val summary: HMSPollLeaderboardSummary?, val hasNext: Boolean?)","description":"live.hms.video.polls.network.PollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/index.html","searchKeys":["PollLeaderboardResponse","data class PollLeaderboardResponse(val entries: List?, val summary: HMSPollLeaderboardSummary?, val hasNext: Boolean?)","live.hms.video.polls.network.PollLeaderboardResponse"]},{"name":"data class PollQuestionGetResponse(val last: Boolean, val pollId: String, val version: String, val questions: List)","description":"live.hms.video.polls.network.PollQuestionGetResponse","location":"lib/live.hms.video.polls.network/-poll-question-get-response/index.html","searchKeys":["PollQuestionGetResponse","data class PollQuestionGetResponse(val last: Boolean, val pollId: String, val version: String, val questions: List)","live.hms.video.polls.network.PollQuestionGetResponse"]},{"name":"data class PollResultsDisplay(val totalResponses: Long? = null, val votingUsers: Long? = null, val totalDistinctUsers: Long? = null, val questions: List)","description":"live.hms.video.polls.network.PollResultsDisplay","location":"lib/live.hms.video.polls.network/-poll-results-display/index.html","searchKeys":["PollResultsDisplay","data class PollResultsDisplay(val totalResponses: Long? = null, val votingUsers: Long? = null, val totalDistinctUsers: Long? = null, val questions: List)","live.hms.video.polls.network.PollResultsDisplay"]},{"name":"data class PollResultsItems(val questionIndex: Long, val correct: Long, val type: HMSPollQuestionType, val skipped: Long, val total: Long, val error: HMSException?)","description":"live.hms.video.polls.network.PollResultsItems","location":"lib/live.hms.video.polls.network/-poll-results-items/index.html","searchKeys":["PollResultsItems","data class PollResultsItems(val questionIndex: Long, val correct: Long, val type: HMSPollQuestionType, val skipped: Long, val total: Long, val error: HMSException?)","live.hms.video.polls.network.PollResultsItems"]},{"name":"data class PollResultsResponse(val pollId: String, val totalResponses: Long, val votingUsers: Long, val totalDistinctUsers: Long, val question: List)","description":"live.hms.video.polls.network.PollResultsResponse","location":"lib/live.hms.video.polls.network/-poll-results-response/index.html","searchKeys":["PollResultsResponse","data class PollResultsResponse(val pollId: String, val totalResponses: Long, val votingUsers: Long, val totalDistinctUsers: Long, val question: List)","live.hms.video.polls.network.PollResultsResponse"]},{"name":"data class PollStartRequest(val pollId: String, val version: String = \"1.0\")","description":"live.hms.video.polls.network.PollStartRequest","location":"lib/live.hms.video.polls.network/-poll-start-request/index.html","searchKeys":["PollStartRequest","data class PollStartRequest(val pollId: String, val version: String = \"1.0\")","live.hms.video.polls.network.PollStartRequest"]},{"name":"data class PollStatsQuestions(val index: Int, val questionType: HMSPollQuestionType, val options: List?, val correct: Long?, val skipped: Long, val attemptedTimes: Int)","description":"live.hms.video.polls.models.PollStatsQuestions","location":"lib/live.hms.video.polls.models/-poll-stats-questions/index.html","searchKeys":["PollStatsQuestions","data class PollStatsQuestions(val index: Int, val questionType: HMSPollQuestionType, val options: List?, val correct: Long?, val skipped: Long, val attemptedTimes: Int)","live.hms.video.polls.models.PollStatsQuestions"]},{"name":"data class PreferLayer(val trackId: String, val layer: String) : HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.PreferLayer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/index.html","searchKeys":["PreferLayer","data class PreferLayer(val trackId: String, val layer: String) : HMSDataChannelRequestParams","live.hms.video.media.streams.models.PreferLayer"]},{"name":"data class PreferLayerAudio(val trackId: String, val isSubscribed: Boolean) : HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.PreferLayerAudio","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/index.html","searchKeys":["PreferLayerAudio","data class PreferLayerAudio(val trackId: String, val isSubscribed: Boolean) : HMSDataChannelRequestParams","live.hms.video.media.streams.models.PreferLayerAudio"]},{"name":"data class PreferLayerResponseInfo(val trackId: String)","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/index.html","searchKeys":["PreferLayerResponseInfo","data class PreferLayerResponseInfo(val trackId: String)","live.hms.video.media.streams.models.PreferLayerResponseInfo"]},{"name":"data class PreferStateResponse(val info: PreferLayerResponseInfo) : HMSDataChannelResponse","description":"live.hms.video.media.streams.models.PreferStateResponse","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/index.html","searchKeys":["PreferStateResponse","data class PreferStateResponse(val info: PreferLayerResponseInfo) : HMSDataChannelResponse","live.hms.video.media.streams.models.PreferStateResponse"]},{"name":"data class PreferStateResponseError(val code: Int?, val message: String?, val data: String?) : HMSDataChannelResponse","description":"live.hms.video.media.streams.models.PreferStateResponseError","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/index.html","searchKeys":["PreferStateResponseError","data class PreferStateResponseError(val code: Int?, val message: String?, val data: String?) : HMSDataChannelResponse","live.hms.video.media.streams.models.PreferStateResponseError"]},{"name":"data class Preview(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, val skipPreview: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/index.html","searchKeys":["Preview","data class Preview(val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, val skipPreview: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview"]},{"name":"data class PreviewHeader(val subTitle: String?, val title: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/index.html","searchKeys":["PreviewHeader","data class PreviewHeader(val subTitle: String?, val title: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader"]},{"name":"data class PublishAnalyticPayload(val sequenceNumber: Int, val maxWindowSecond: Int, val joined_at: Long, val video: List = emptyList(), val audio: List, val batteryPercentage: Int)","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/index.html","searchKeys":["PublishAnalyticPayload","data class PublishAnalyticPayload(val sequenceNumber: Int, val maxWindowSecond: Int, val joined_at: Long, val video: List = emptyList(), val audio: List, val batteryPercentage: Int)","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload"]},{"name":"data class PublishConnection(var bytesSent: BigInteger?, var availableOutgoingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsSent: BigInteger?) : ConnectionInfo","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/index.html","searchKeys":["PublishConnection","data class PublishConnection(var bytesSent: BigInteger?, var availableOutgoingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsSent: BigInteger?) : ConnectionInfo","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection"]},{"name":"data class PublishConnection(var bytesSent: Long = 0, var availableOutgoingBitrates: MutableList = mutableListOf(), var packetsSent: Long = 0, var packetLoss: Long = 0)","description":"live.hms.video.sdk.PublishConnection","location":"lib/live.hms.video.sdk/-publish-connection/index.html","searchKeys":["PublishConnection","data class PublishConnection(var bytesSent: Long = 0, var availableOutgoingBitrates: MutableList = mutableListOf(), var packetsSent: Long = 0, var packetLoss: Long = 0)","live.hms.video.sdk.PublishConnection"]},{"name":"data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList = arrayListOf(), val simulcast: Simulcast?)","description":"live.hms.video.sdk.models.role.PublishParams","location":"lib/live.hms.video.sdk.models.role/-publish-params/index.html","searchKeys":["PublishParams","data class PublishParams(val audio: AudioParams?, val video: VideoParams?, val screen: VideoParams?, val allowed: ArrayList = arrayListOf(), val simulcast: Simulcast?)","live.hms.video.sdk.models.role.PublishParams"]},{"name":"data class QualityLimitation(val bandwidthMs: Float, val cpuMs: Float)","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/index.html","searchKeys":["QualityLimitation","data class QualityLimitation(val bandwidthMs: Float, val cpuMs: Float)","live.hms.video.connection.stats.clientside.model.QualityLimitation"]},{"name":"data class QualityLimitationReasons(stringReason: String? = null, val bandWidth: Double? = null, val cpu: Double? = null, val none: Double? = null, val other: Double? = null, val qualityLimitationResolutionChanges: Long? = null)","description":"live.hms.video.connection.degredation.QualityLimitationReasons","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/index.html","searchKeys":["QualityLimitationReasons","data class QualityLimitationReasons(stringReason: String? = null, val bandWidth: Double? = null, val cpu: Double? = null, val none: Double? = null, val other: Double? = null, val qualityLimitationResolutionChanges: Long? = null)","live.hms.video.connection.degredation.QualityLimitationReasons"]},{"name":"data class QuestionContainer(val questions: List? = null, val error: Throwable? = null)","description":"live.hms.video.polls.network.QuestionContainer","location":"lib/live.hms.video.polls.network/-question-container/index.html","searchKeys":["QuestionContainer","data class QuestionContainer(val questions: List? = null, val error: Throwable? = null)","live.hms.video.polls.network.QuestionContainer"]},{"name":"data class RangeLimits(val low: Long, val high: Long)","description":"live.hms.video.signal.init.RangeLimits","location":"lib/live.hms.video.signal.init/-range-limits/index.html","searchKeys":["RangeLimits","data class RangeLimits(val low: Long, val high: Long)","live.hms.video.signal.init.RangeLimits"]},{"name":"data class RealTimeControls(val canDisableChat: Boolean, val canBlockUser: Boolean, val canHideMessage: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/index.html","searchKeys":["RealTimeControls","data class RealTimeControls(val canDisableChat: Boolean, val canBlockUser: Boolean, val canHideMessage: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls"]},{"name":"data class Recording(val sfu: Sfu?, val browser: Browser?, val hls: Hls?)","description":"live.hms.video.sdk.peerlist.models.Recording","location":"lib/live.hms.video.sdk.peerlist.models/-recording/index.html","searchKeys":["Recording","data class Recording(val sfu: Sfu?, val browser: Browser?, val hls: Hls?)","live.hms.video.sdk.peerlist.models.Recording"]},{"name":"data class Result(val mode: TranscriptionsMode?)","description":"live.hms.video.sdk.models.Result","location":"lib/live.hms.video.sdk.models/-result/index.html","searchKeys":["Result","data class Result(val mode: TranscriptionsMode?)","live.hms.video.sdk.models.Result"]},{"name":"data class RpcRequestWrapper(val method: String, val params: HMSDataChannelRequestParams, val id: String = IdHelper.makeCallSignalId(), val jsonRpc: String = \"2.0\")","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/index.html","searchKeys":["RpcRequestWrapper","data class RpcRequestWrapper(val method: String, val params: HMSDataChannelRequestParams, val id: String = IdHelper.makeCallSignalId(), val jsonRpc: String = \"2.0\")","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper"]},{"name":"data class Screens(val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/index.html","searchKeys":["Screens","data class Screens(val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens"]},{"name":"data class ServerConfiguration(val enabledFlags: List?, val networkHealth: NetworkHealth?, val publishStats: Stats?, val subscribeStats: Stats?, val vb: VB?)","description":"live.hms.video.signal.init.ServerConfiguration","location":"lib/live.hms.video.signal.init/-server-configuration/index.html","searchKeys":["ServerConfiguration","data class ServerConfiguration(val enabledFlags: List?, val networkHealth: NetworkHealth?, val publishStats: Stats?, val subscribeStats: Stats?, val vb: VB?)","live.hms.video.signal.init.ServerConfiguration"]},{"name":"data class SetQuestionsResponse(val pollId: String, val totalQuestions: Int, val version: String)","description":"live.hms.video.polls.network.SetQuestionsResponse","location":"lib/live.hms.video.polls.network/-set-questions-response/index.html","searchKeys":["SetQuestionsResponse","data class SetQuestionsResponse(val pollId: String, val totalQuestions: Int, val version: String)","live.hms.video.polls.network.SetQuestionsResponse"]},{"name":"data class Sfu(val enabled: Boolean, val startedAt: Long?, val initialisedAt: Long?, val updatedAt: Long?, val state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Sfu","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/index.html","searchKeys":["Sfu","data class Sfu(val enabled: Boolean, val startedAt: Long?, val initialisedAt: Long?, val updatedAt: Long?, val state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Sfu"]},{"name":"data class ShortCodeInput(val token: String, val userId: String?)","description":"live.hms.video.signal.init.ShortCodeInput","location":"lib/live.hms.video.signal.init/-short-code-input/index.html","searchKeys":["ShortCodeInput","data class ShortCodeInput(val token: String, val userId: String?)","live.hms.video.signal.init.ShortCodeInput"]},{"name":"data class Simulcast(val video: VideoSimulcastLayersParams?, val screen: VideoSimulcastLayersParams?)","description":"live.hms.video.sdk.models.role.Simulcast","location":"lib/live.hms.video.sdk.models.role/-simulcast/index.html","searchKeys":["Simulcast","data class Simulcast(val video: VideoSimulcastLayersParams?, val screen: VideoSimulcastLayersParams?)","live.hms.video.sdk.models.role.Simulcast"]},{"name":"data class SingleResponse(val peer: HMSPollResponsePeerInfo, val finalAnswer: Boolean, val response: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.network.SingleResponse","location":"lib/live.hms.video.polls.models.network/-single-response/index.html","searchKeys":["SingleResponse","data class SingleResponse(val peer: HMSPollResponsePeerInfo, val finalAnswer: Boolean, val response: HMSPollQuestionResponse)","live.hms.video.polls.models.network.SingleResponse"]},{"name":"data class Size(val width: Int, val height: Int)","description":"live.hms.video.connection.stats.clientside.model.Size","location":"lib/live.hms.video.connection.stats.clientside.model/-size/index.html","searchKeys":["Size","data class Size(val width: Int, val height: Int)","live.hms.video.connection.stats.clientside.model.Size"]},{"name":"data class Start(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/index.html","searchKeys":["Start","data class Start(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start"]},{"name":"data class Stats(val maxSampleWindowSize: Float?, val maxSamplePushInterval: Float?)","description":"live.hms.video.signal.init.Stats","location":"lib/live.hms.video.signal.init/-stats/index.html","searchKeys":["Stats","data class Stats(val maxSampleWindowSize: Float?, val maxSamplePushInterval: Float?)","live.hms.video.signal.init.Stats"]},{"name":"data class StatsBundle(val packetLoss: Long, val allStats: Map, val totalPackets: Long, val packetLossTracks: MutableMap)","description":"live.hms.video.connection.degredation.StatsBundle","location":"lib/live.hms.video.connection.degredation/-stats-bundle/index.html","searchKeys":["StatsBundle","data class StatsBundle(val packetLoss: Long, val allStats: Map, val totalPackets: Long, val packetLossTracks: MutableMap)","live.hms.video.connection.degredation.StatsBundle"]},{"name":"data class Stop(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/index.html","searchKeys":["Stop","data class Stop(val hmsWhiteboard: HMSWhiteboard) : HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop"]},{"name":"data class SubscribeConnection(var bytesReceived: BigInteger?, var availableIncomingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsReceived: BigInteger?) : ConnectionInfo","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/index.html","searchKeys":["SubscribeConnection","data class SubscribeConnection(var bytesReceived: BigInteger?, var availableIncomingBitrate: Double?, var totalRoundTripTime: Double?, var currentRoundTripTime: Double?, var packetsReceived: BigInteger?) : ConnectionInfo","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection"]},{"name":"data class SubscribeConnection(var bytesReceived: Long = 0, var availableIncomingBitrates: MutableList = mutableListOf(), var packetsReceived: Long = 0, var packetLoss: Long = 0)","description":"live.hms.video.sdk.SubscribeConnection","location":"lib/live.hms.video.sdk/-subscribe-connection/index.html","searchKeys":["SubscribeConnection","data class SubscribeConnection(var bytesReceived: Long = 0, var availableIncomingBitrates: MutableList = mutableListOf(), var packetsReceived: Long = 0, var packetLoss: Long = 0)","live.hms.video.sdk.SubscribeConnection"]},{"name":"data class SubscribeDegradationParams(val packetLossThreshold: Long, val degradeGracePeriodSeconds: Long, val recoverGracePeriodSeconds: Long)","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/index.html","searchKeys":["SubscribeDegradationParams","data class SubscribeDegradationParams(val packetLossThreshold: Long, val degradeGracePeriodSeconds: Long, val recoverGracePeriodSeconds: Long)","live.hms.video.sdk.models.role.SubscribeDegradationParams"]},{"name":"data class SubscribeParams(val subscribeTo: ArrayList?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)","description":"live.hms.video.sdk.models.role.SubscribeParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/index.html","searchKeys":["SubscribeParams","data class SubscribeParams(val subscribeTo: ArrayList?, val maxSubsBitRate: Int, val subscribeDegradationParam: SubscribeDegradationParams?)","live.hms.video.sdk.models.role.SubscribeParams"]},{"name":"data class TokenRequest(val roomCode: String, val userId: String? = null)","description":"live.hms.video.signal.init.TokenRequest","location":"lib/live.hms.video.signal.init/-token-request/index.html","searchKeys":["TokenRequest","data class TokenRequest(val roomCode: String, val userId: String? = null)","live.hms.video.signal.init.TokenRequest"]},{"name":"data class TokenRequestOptions(val endpoint: String?)","description":"live.hms.video.signal.init.TokenRequestOptions","location":"lib/live.hms.video.signal.init/-token-request-options/index.html","searchKeys":["TokenRequestOptions","data class TokenRequestOptions(val endpoint: String?)","live.hms.video.signal.init.TokenRequestOptions"]},{"name":"data class TokenResult(val token: String?, val expiresAt: String?)","description":"live.hms.video.signal.init.TokenResult","location":"lib/live.hms.video.signal.init/-token-result/index.html","searchKeys":["TokenResult","data class TokenResult(val token: String?, val expiresAt: String?)","live.hms.video.signal.init.TokenResult"]},{"name":"data class TranscriptionStartResponse(val result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStartResponse","location":"lib/live.hms.video.sdk.models/-transcription-start-response/index.html","searchKeys":["TranscriptionStartResponse","data class TranscriptionStartResponse(val result: Result?)","live.hms.video.sdk.models.TranscriptionStartResponse"]},{"name":"data class TranscriptionStopResponse(val result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStopResponse","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/index.html","searchKeys":["TranscriptionStopResponse","data class TranscriptionStopResponse(val result: Result?)","live.hms.video.sdk.models.TranscriptionStopResponse"]},{"name":"data class TypoGraphy(val fontFamily: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/index.html","searchKeys":["TypoGraphy","data class TypoGraphy(val fontFamily: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy"]},{"name":"data class VB(val effectsKey: String?)","description":"live.hms.video.signal.init.VB","location":"lib/live.hms.video.signal.init/-v-b/index.html","searchKeys":["VB","data class VB(val effectsKey: String?)","live.hms.video.signal.init.VB"]},{"name":"data class Video : RemoteTrack","description":"live.hms.video.connection.degredation.Video","location":"lib/live.hms.video.connection.degredation/-video/index.html","searchKeys":["Video","data class Video : RemoteTrack","live.hms.video.connection.degredation.Video"]},{"name":"data class VideoAnalytics(val rid: String?, val videoSamples: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/index.html","searchKeys":["VideoAnalytics","data class VideoAnalytics(val rid: String?, val videoSamples: List, val trackId: String, val ssrc: String, val source: String) : TrackAnalytics","live.hms.video.connection.stats.clientside.model.VideoAnalytics"]},{"name":"data class VideoParams(val bitRate: Int, val codec: HMSVideoCodec, val frameRate: Int, val width: Int, val height: Int)","description":"live.hms.video.sdk.models.role.VideoParams","location":"lib/live.hms.video.sdk.models.role/-video-params/index.html","searchKeys":["VideoParams","data class VideoParams(val bitRate: Int, val codec: HMSVideoCodec, val frameRate: Int, val width: Int, val height: Int)","live.hms.video.sdk.models.role.VideoParams"]},{"name":"data class VideoSamplesPublish(val total_quality_limitation: QualityLimitation, val avg_fps: Int, val resolution: Size, val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long, val totalPacketSendDelay: Double, val packetsSent: Long) : PublishBaseSamples","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/index.html","searchKeys":["VideoSamplesPublish","data class VideoSamplesPublish(val total_quality_limitation: QualityLimitation, val avg_fps: Int, val resolution: Size, val timestamp: Long, val avgRoundTripTimeMs: Int, val avgJitterMs: Float, val totalPacketsLost: Long, val avgBitrateBps: Long, val avgAvailableOutgoingBitrateBps: Long, val totalPacketSendDelay: Double, val packetsSent: Long) : PublishBaseSamples","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish"]},{"name":"data class VideoSamplesSubscribe(val timestamp: Long, val avg_frames_received_per_sec: Float, val avg_frames_dropped_per_sec: Float, val avg_frames_decoded_per_sec: Float, val total_pli_count: Int, val total_nack_count: Int, val avg_av_sync_ms: Int, val frame_width: Int, val frame_height: Int, val pause_count: Int, val pause_duration_seconds: Float, val freeze_count: Int, val freeze_duration_seconds: Float, val avg_jitter_buffer_delay: Float) : VideoSubscribeBaseSample","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/index.html","searchKeys":["VideoSamplesSubscribe","data class VideoSamplesSubscribe(val timestamp: Long, val avg_frames_received_per_sec: Float, val avg_frames_dropped_per_sec: Float, val avg_frames_decoded_per_sec: Float, val total_pli_count: Int, val total_nack_count: Int, val avg_av_sync_ms: Int, val frame_width: Int, val frame_height: Int, val pause_count: Int, val pause_duration_seconds: Float, val freeze_count: Int, val freeze_duration_seconds: Float, val avg_jitter_buffer_delay: Float) : VideoSubscribeBaseSample","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe"]},{"name":"data class VideoSimulcastLayersParams(val layers: ArrayList?)","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/index.html","searchKeys":["VideoSimulcastLayersParams","data class VideoSimulcastLayersParams(val layers: ArrayList?)","live.hms.video.sdk.models.role.VideoSimulcastLayersParams"]},{"name":"data class VideoTileLayout(val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/index.html","searchKeys":["VideoTileLayout","data class VideoTileLayout(val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout"]},{"name":"dvr","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.dvr","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/dvr/index.html","searchKeys":["dvr","dvr","live.hms.video.sdk.models.HMSHLSPlaylistType.dvr"]},{"name":"enum AgentType : Enum ","description":"live.hms.video.events.AgentType","location":"lib/live.hms.video.events/-agent-type/index.html","searchKeys":["AgentType","enum AgentType : Enum ","live.hms.video.events.AgentType"]},{"name":"enum AudioChangeEvent : Enum ","description":"live.hms.video.audio.AudioChangeEvent","location":"lib/live.hms.video.audio/-audio-change-event/index.html","searchKeys":["AudioChangeEvent","enum AudioChangeEvent : Enum ","live.hms.video.audio.AudioChangeEvent"]},{"name":"enum AudioDevice : Enum ","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/index.html","searchKeys":["AudioDevice","enum AudioDevice : Enum ","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice"]},{"name":"enum AudioDevice : Enum ","description":"live.hms.video.audio.HMSAudioManager.AudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/index.html","searchKeys":["AudioDevice","enum AudioDevice : Enum ","live.hms.video.audio.HMSAudioManager.AudioDevice"]},{"name":"enum AudioManagerState : Enum ","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/index.html","searchKeys":["AudioManagerState","enum AudioManagerState : Enum ","live.hms.video.audio.HMSAudioManager.AudioManagerState"]},{"name":"enum AudioMixingMode : Enum ","description":"live.hms.video.sdk.models.enums.AudioMixingMode","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/index.html","searchKeys":["AudioMixingMode","enum AudioMixingMode : Enum ","live.hms.video.sdk.models.enums.AudioMixingMode"]},{"name":"enum BeamRecordingStates : Enum ","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/index.html","searchKeys":["BeamRecordingStates","enum BeamRecordingStates : Enum ","live.hms.video.sdk.peerlist.models.BeamRecordingStates"]},{"name":"enum BeamStreamingStates : Enum ","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/index.html","searchKeys":["BeamStreamingStates","enum BeamStreamingStates : Enum ","live.hms.video.sdk.peerlist.models.BeamStreamingStates"]},{"name":"enum BluetoothErrorType : Enum ","description":"live.hms.video.audio.BluetoothErrorType","location":"lib/live.hms.video.audio/-bluetooth-error-type/index.html","searchKeys":["BluetoothErrorType","enum BluetoothErrorType : Enum ","live.hms.video.audio.BluetoothErrorType"]},{"name":"enum CameraFacing : Enum ","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/index.html","searchKeys":["CameraFacing","enum CameraFacing : Enum ","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing"]},{"name":"enum ConnectivityState : Enum ","description":"live.hms.video.diagnostics.models.ConnectivityState","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/index.html","searchKeys":["ConnectivityState","enum ConnectivityState : Enum ","live.hms.video.diagnostics.models.ConnectivityState"]},{"name":"enum DataChannelRequestMethod : Enum ","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/index.html","searchKeys":["DataChannelRequestMethod","enum DataChannelRequestMethod : Enum ","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod"]},{"name":"enum DegradationPreference : Enum ","description":"live.hms.video.sdk.models.DegradationPreference","location":"lib/live.hms.video.sdk.models/-degradation-preference/index.html","searchKeys":["DegradationPreference","enum DegradationPreference : Enum ","live.hms.video.sdk.models.DegradationPreference"]},{"name":"enum HMSAnalyticsEventLevel : Enum ","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/index.html","searchKeys":["HMSAnalyticsEventLevel","enum HMSAnalyticsEventLevel : Enum ","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel"]},{"name":"enum HMSAudioCodec : Enum ","description":"live.hms.video.media.codec.HMSAudioCodec","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/index.html","searchKeys":["HMSAudioCodec","enum HMSAudioCodec : Enum ","live.hms.video.media.codec.HMSAudioCodec"]},{"name":"enum HMSAudioMode : Enum ","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/index.html","searchKeys":["HMSAudioMode","enum HMSAudioMode : Enum ","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode"]},{"name":"enum HMSHLSPlaylistType : Enum ","description":"live.hms.video.sdk.models.HMSHLSPlaylistType","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/index.html","searchKeys":["HMSHLSPlaylistType","enum HMSHLSPlaylistType : Enum ","live.hms.video.sdk.models.HMSHLSPlaylistType"]},{"name":"enum HMSLayer : Enum ","description":"live.hms.video.media.settings.HMSLayer","location":"lib/live.hms.video.media.settings/-h-m-s-layer/index.html","searchKeys":["HMSLayer","enum HMSLayer : Enum ","live.hms.video.media.settings.HMSLayer"]},{"name":"enum HMSMessageRecipientType : Enum ","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/index.html","searchKeys":["HMSMessageRecipientType","enum HMSMessageRecipientType : Enum ","live.hms.video.sdk.models.enums.HMSMessageRecipientType"]},{"name":"enum HMSMode : Enum ","description":"live.hms.video.sdk.models.enums.HMSMode","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/index.html","searchKeys":["HMSMode","enum HMSMode : Enum ","live.hms.video.sdk.models.enums.HMSMode"]},{"name":"enum HMSPeerType : Enum ","description":"live.hms.video.sdk.models.HMSPeerType","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/index.html","searchKeys":["HMSPeerType","enum HMSPeerType : Enum ","live.hms.video.sdk.models.HMSPeerType"]},{"name":"enum HMSPeerUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/index.html","searchKeys":["HMSPeerUpdate","enum HMSPeerUpdate : Enum ","live.hms.video.sdk.models.enums.HMSPeerUpdate"]},{"name":"enum HMSPollQuestionType : Enum ","description":"live.hms.video.polls.models.question.HMSPollQuestionType","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/index.html","searchKeys":["HMSPollQuestionType","enum HMSPollQuestionType : Enum ","live.hms.video.polls.models.question.HMSPollQuestionType"]},{"name":"enum HMSPollUpdateType : Enum ","description":"live.hms.video.polls.models.HMSPollUpdateType","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/index.html","searchKeys":["HMSPollUpdateType","enum HMSPollUpdateType : Enum ","live.hms.video.polls.models.HMSPollUpdateType"]},{"name":"enum HMSRecordingState : Enum ","description":"live.hms.video.sdk.models.enums.HMSRecordingState","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/index.html","searchKeys":["HMSRecordingState","enum HMSRecordingState : Enum ","live.hms.video.sdk.models.enums.HMSRecordingState"]},{"name":"enum HMSRoomUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/index.html","searchKeys":["HMSRoomUpdate","enum HMSRoomUpdate : Enum ","live.hms.video.sdk.models.enums.HMSRoomUpdate"]},{"name":"enum HMSStreamingState : Enum ","description":"live.hms.video.sdk.models.enums.HMSStreamingState","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/index.html","searchKeys":["HMSStreamingState","enum HMSStreamingState : Enum ","live.hms.video.sdk.models.enums.HMSStreamingState"]},{"name":"enum HMSTrackType : Enum ","description":"live.hms.video.media.tracks.HMSTrackType","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/index.html","searchKeys":["HMSTrackType","enum HMSTrackType : Enum ","live.hms.video.media.tracks.HMSTrackType"]},{"name":"enum HMSTrackUpdate : Enum ","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/index.html","searchKeys":["HMSTrackUpdate","enum HMSTrackUpdate : Enum ","live.hms.video.sdk.models.enums.HMSTrackUpdate"]},{"name":"enum HMSVideoCodec : Enum ","description":"live.hms.video.media.codec.HMSVideoCodec","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/index.html","searchKeys":["HMSVideoCodec","enum HMSVideoCodec : Enum ","live.hms.video.media.codec.HMSVideoCodec"]},{"name":"enum HMSVideoPluginType : Enum ","description":"live.hms.video.plugin.video.HMSVideoPluginType","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/index.html","searchKeys":["HMSVideoPluginType","enum HMSVideoPluginType : Enum ","live.hms.video.plugin.video.HMSVideoPluginType"]},{"name":"enum HmsPollCategory : Enum ","description":"live.hms.video.polls.models.HmsPollCategory","location":"lib/live.hms.video.polls.models/-hms-poll-category/index.html","searchKeys":["HmsPollCategory","enum HmsPollCategory : Enum ","live.hms.video.polls.models.HmsPollCategory"]},{"name":"enum HmsPollState : Enum ","description":"live.hms.video.polls.models.HmsPollState","location":"lib/live.hms.video.polls.models/-hms-poll-state/index.html","searchKeys":["HmsPollState","enum HmsPollState : Enum ","live.hms.video.polls.models.HmsPollState"]},{"name":"enum HmsPollUserTrackingMode : Enum ","description":"live.hms.video.polls.models.HmsPollUserTrackingMode","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/index.html","searchKeys":["HmsPollUserTrackingMode","enum HmsPollUserTrackingMode : Enum ","live.hms.video.polls.models.HmsPollUserTrackingMode"]},{"name":"enum InitState : Enum ","description":"live.hms.video.media.settings.HMSTrackSettings.InitState","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/index.html","searchKeys":["InitState","enum InitState : Enum ","live.hms.video.media.settings.HMSTrackSettings.InitState"]},{"name":"enum Layer : Enum ","description":"live.hms.video.sdk.models.Layer","location":"lib/live.hms.video.sdk.models/-layer/index.html","searchKeys":["Layer","enum Layer : Enum ","live.hms.video.sdk.models.Layer"]},{"name":"enum LogFiles : Enum ","description":"live.hms.video.utils.HMSLogger.LogFiles","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/index.html","searchKeys":["LogFiles","enum LogFiles : Enum ","live.hms.video.utils.HMSLogger.LogFiles"]},{"name":"enum LogLevel : Enum ","description":"live.hms.video.utils.HMSLogger.LogLevel","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","live.hms.video.utils.HMSLogger.LogLevel"]},{"name":"enum PhoneCallState","description":"live.hms.video.media.settings.PhoneCallState","location":"lib/live.hms.video.media.settings/-phone-call-state/index.html","searchKeys":["PhoneCallState","enum PhoneCallState","live.hms.video.media.settings.PhoneCallState"]},{"name":"enum QualityLimitationReason : Enum ","description":"live.hms.video.connection.degredation.QualityLimitationReason","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/index.html","searchKeys":["QualityLimitationReason","enum QualityLimitationReason : Enum ","live.hms.video.connection.degredation.QualityLimitationReason"]},{"name":"enum RetrySchedulerState : Enum ","description":"live.hms.video.sdk.models.enums.RetrySchedulerState","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/index.html","searchKeys":["RetrySchedulerState","enum RetrySchedulerState : Enum ","live.hms.video.sdk.models.enums.RetrySchedulerState"]},{"name":"enum State : Enum ","description":"live.hms.video.whiteboard.State","location":"lib/live.hms.video.whiteboard/-state/index.html","searchKeys":["State","enum State : Enum ","live.hms.video.whiteboard.State"]},{"name":"enum TranscriptionState : Enum ","description":"live.hms.video.sdk.models.TranscriptionState","location":"lib/live.hms.video.sdk.models/-transcription-state/index.html","searchKeys":["TranscriptionState","enum TranscriptionState : Enum ","live.hms.video.sdk.models.TranscriptionState"]},{"name":"enum TranscriptionsMode : Enum ","description":"live.hms.video.sdk.models.TranscriptionsMode","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/index.html","searchKeys":["TranscriptionsMode","enum TranscriptionsMode : Enum ","live.hms.video.sdk.models.TranscriptionsMode"]},{"name":"enum VideoPluginMode : Enum ","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/index.html","searchKeys":["VideoPluginMode","enum VideoPluginMode : Enum ","live.hms.video.plugin.video.virtualbackground.VideoPluginMode"]},{"name":"failed","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.failed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/failed/index.html","searchKeys":["failed","failed","live.hms.video.sdk.peerlist.models.BeamRecordingStates.failed"]},{"name":"failed","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.failed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/failed/index.html","searchKeys":["failed","failed","live.hms.video.sdk.peerlist.models.BeamStreamingStates.failed"]},{"name":"fun T.toJson(): String","description":"live.hms.video.utils.toJson","location":"lib/live.hms.video.utils/to-json.html","searchKeys":["toJson","fun T.toJson(): String","live.hms.video.utils.toJson"]},{"name":"fun T.toJsonObject(): JsonObject","description":"live.hms.video.utils.toJsonObject","location":"lib/live.hms.video.utils/to-json-object.html","searchKeys":["toJsonObject","fun T.toJsonObject(): JsonObject","live.hms.video.utils.toJsonObject"]},{"name":"fun AnalyticsCluster(websocketUrl: String = \"\")","description":"live.hms.video.database.entity.AnalyticsCluster.AnalyticsCluster","location":"lib/live.hms.video.database.entity/-analytics-cluster/-analytics-cluster.html","searchKeys":["AnalyticsCluster","fun AnalyticsCluster(websocketUrl: String = \"\")","live.hms.video.database.entity.AnalyticsCluster.AnalyticsCluster"]},{"name":"fun AnalyticsPeer(peerId: String? = null, role: String? = null, joinedAt: Long? = null, leftAt: Long? = null, roomName: String? = null, sessionStartedAt: Long? = null, userData: String? = null, userName: String? = null, templateId: String? = null, sessionId: String? = null)","description":"live.hms.video.database.entity.AnalyticsPeer.AnalyticsPeer","location":"lib/live.hms.video.database.entity/-analytics-peer/-analytics-peer.html","searchKeys":["AnalyticsPeer","fun AnalyticsPeer(peerId: String? = null, role: String? = null, joinedAt: Long? = null, leftAt: Long? = null, roomName: String? = null, sessionStartedAt: Long? = null, userData: String? = null, userName: String? = null, templateId: String? = null, sessionId: String? = null)","live.hms.video.database.entity.AnalyticsPeer.AnalyticsPeer"]},{"name":"fun AudioAnalytics(audioSample: List, trackId: String, ssrc: String, source: String)","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.AudioAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/-audio-analytics.html","searchKeys":["AudioAnalytics","fun AudioAnalytics(audioSample: List, trackId: String, ssrc: String, source: String)","live.hms.video.connection.stats.clientside.model.AudioAnalytics.AudioAnalytics"]},{"name":"fun AudioInputDeviceReport()","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport.AudioInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/-audio-input-device-report.html","searchKeys":["AudioInputDeviceReport","fun AudioInputDeviceReport()","live.hms.video.diagnostics.models.AudioInputDeviceReport.AudioInputDeviceReport"]},{"name":"fun AudioOutputDeviceReport()","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport.AudioOutputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/-audio-output-device-report.html","searchKeys":["AudioOutputDeviceReport","fun AudioOutputDeviceReport()","live.hms.video.diagnostics.models.AudioOutputDeviceReport.AudioOutputDeviceReport"]},{"name":"fun AudioParams(bitRate: Int, codec: HMSAudioCodec)","description":"live.hms.video.sdk.models.role.AudioParams.AudioParams","location":"lib/live.hms.video.sdk.models.role/-audio-params/-audio-params.html","searchKeys":["AudioParams","fun AudioParams(bitRate: Int, codec: HMSAudioCodec)","live.hms.video.sdk.models.role.AudioParams.AudioParams"]},{"name":"fun AudioSamplesPublish(timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long)","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.AudioSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/-audio-samples-publish.html","searchKeys":["AudioSamplesPublish","fun AudioSamplesPublish(timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long)","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.AudioSamplesPublish"]},{"name":"fun AudioSamplesSubscribe(timestamp: Long, audio_level_high_seconds: Long, audio_concealed_samples: Long, audio_total_samples_received: Long, audio_concealment_events: Long, fec_packets_discarded: Long, fec_packets_received: Long, total_samples_duration: Float, total_packets_received: Long, total_packets_lost: Long, jitter_buffer_delay: Double)","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.AudioSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/-audio-samples-subscribe.html","searchKeys":["AudioSamplesSubscribe","fun AudioSamplesSubscribe(timestamp: Long, audio_level_high_seconds: Long, audio_concealed_samples: Long, audio_total_samples_received: Long, audio_concealment_events: Long, fec_packets_discarded: Long, fec_packets_received: Long, total_samples_duration: Float, total_packets_received: Long, total_packets_lost: Long, jitter_buffer_delay: Double)","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.AudioSamplesSubscribe"]},{"name":"fun BitMatrix(bitmap: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.BitMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/-bit-matrix.html","searchKeys":["BitMatrix","fun BitMatrix(bitmap: Bitmap)","live.hms.video.media.capturers.camera.utils.BitMatrix.BitMatrix"]},{"name":"fun Bitmap.applyMatrix(operations: BitMatrix.() -> Matrix): Bitmap","description":"live.hms.video.media.capturers.camera.utils.applyMatrix","location":"lib/live.hms.video.media.capturers.camera.utils/apply-matrix.html","searchKeys":["applyMatrix","fun Bitmap.applyMatrix(operations: BitMatrix.() -> Matrix): Bitmap","live.hms.video.media.capturers.camera.utils.applyMatrix"]},{"name":"fun BluetoothPermissionHandler(hmsTrackSettings: HMSTrackSettings)","description":"live.hms.video.audio.BluetoothPermissionHandler.BluetoothPermissionHandler","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/-bluetooth-permission-handler.html","searchKeys":["BluetoothPermissionHandler","fun BluetoothPermissionHandler(hmsTrackSettings: HMSTrackSettings)","live.hms.video.audio.BluetoothPermissionHandler.BluetoothPermissionHandler"]},{"name":"fun Brb()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb.Brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-brb/-brb.html","searchKeys":["Brb","fun Brb()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb.Brb"]},{"name":"fun Browser(enabled: Boolean?, startedAt: Long?, stoppedAt: Long?, initialisedAt: Long?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Browser.Browser","location":"lib/live.hms.video.sdk.peerlist.models/-browser/-browser.html","searchKeys":["Browser","fun Browser(enabled: Boolean?, startedAt: Long?, stoppedAt: Long?, initialisedAt: Long?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Browser.Browser"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSSimulcastSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.Builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.Builder"]},{"name":"fun Builder()","description":"live.hms.video.polls.HMSPollBuilder.Builder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/-builder.html","searchKeys":["Builder","fun Builder()","live.hms.video.polls.HMSPollBuilder.Builder.Builder"]},{"name":"fun Builder(context: Context)","description":"live.hms.video.sdk.HMSSDK.Builder.Builder","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/-builder.html","searchKeys":["Builder","fun Builder(context: Context)","live.hms.video.sdk.HMSSDK.Builder.Builder"]},{"name":"fun Builder(type: HMSPollQuestionType)","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.Builder","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/-builder.html","searchKeys":["Builder","fun Builder(type: HMSPollQuestionType)","live.hms.video.polls.HMSPollQuestionBuilder.Builder.Builder"]},{"name":"fun Chat(allowPinningMessages: Boolean?, initialState: String?, overlayView: Boolean?, publicChatEnabled: Boolean, rolesWhiteList: List?, privateChatEnabled: Boolean, chatTitle: String, messagePlaceholder: String, realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.Chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/-chat.html","searchKeys":["Chat","fun Chat(allowPinningMessages: Boolean?, initialState: String?, overlayView: Boolean?, publicChatEnabled: Boolean, rolesWhiteList: List?, privateChatEnabled: Boolean, chatTitle: String, messagePlaceholder: String, realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.Chat"]},{"name":"fun Conferencing(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-conferencing.html","searchKeys":["Conferencing","fun Conferencing(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?, hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Conferencing"]},{"name":"fun ConnectivityCheckResult()","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.ConnectivityCheckResult","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/-connectivity-check-result.html","searchKeys":["ConnectivityCheckResult","fun ConnectivityCheckResult()","live.hms.video.diagnostics.models.ConnectivityCheckResult.ConnectivityCheckResult"]},{"name":"fun Context.safeUnregisterReceiver(receiver: BroadcastReceiver?)","description":"live.hms.video.utils.safeUnregisterReceiver","location":"lib/live.hms.video.utils/safe-unregister-receiver.html","searchKeys":["safeUnregisterReceiver","fun Context.safeUnregisterReceiver(receiver: BroadcastReceiver?)","live.hms.video.utils.safeUnregisterReceiver"]},{"name":"fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-default.html","searchKeys":["Default","fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Default"]},{"name":"fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-default.html","searchKeys":["Default","fun Default(elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Default"]},{"name":"fun DeviceTestReport()","description":"live.hms.video.diagnostics.models.DeviceTestReport.DeviceTestReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/-device-test-report.html","searchKeys":["DeviceTestReport","fun DeviceTestReport()","live.hms.video.diagnostics.models.DeviceTestReport.DeviceTestReport"]},{"name":"fun Elements(chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-elements.html","searchKeys":["Elements","fun Elements(chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?, emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?, handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?, onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?, participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?, videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?, brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?, hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Elements"]},{"name":"fun Elements(joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.Elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-elements.html","searchKeys":["Elements","fun Elements(joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?, previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?, virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?, noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.Elements"]},{"name":"fun EmojiReactions()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions.EmojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-emoji-reactions/-emoji-reactions.html","searchKeys":["EmojiReactions","fun EmojiReactions()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions.EmojiReactions"]},{"name":"fun ErrorTokenResult(errorMessage: String?)","description":"live.hms.video.signal.init.ErrorTokenResult.ErrorTokenResult","location":"lib/live.hms.video.signal.init/-error-token-result/-error-token-result.html","searchKeys":["ErrorTokenResult","fun ErrorTokenResult(errorMessage: String?)","live.hms.video.signal.init.ErrorTokenResult.ErrorTokenResult"]},{"name":"fun FeatureFlags(flags: Set)","description":"live.hms.video.sdk.featureflags.FeatureFlags.FeatureFlags","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/-feature-flags.html","searchKeys":["FeatureFlags","fun FeatureFlags(flags: Set)","live.hms.video.sdk.featureflags.FeatureFlags.FeatureFlags"]},{"name":"fun FrameworkInfo(framework: AgentType, frameworkSdkVersion: String? = null, frameworkVersion: String? = null, isPrebuilt: Boolean)","description":"live.hms.video.sdk.models.FrameworkInfo.FrameworkInfo","location":"lib/live.hms.video.sdk.models/-framework-info/-framework-info.html","searchKeys":["FrameworkInfo","fun FrameworkInfo(framework: AgentType, frameworkSdkVersion: String? = null, frameworkVersion: String? = null, isPrebuilt: Boolean)","live.hms.video.sdk.models.FrameworkInfo.FrameworkInfo"]},{"name":"fun Grid(enableLocalTileInset: Boolean?, enableSpotlightingPeer: Boolean?, prominentRoles: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.Grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/-grid.html","searchKeys":["Grid","fun Grid(enableLocalTileInset: Boolean?, enableSpotlightingPeer: Boolean?, prominentRoles: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.Grid"]},{"name":"fun GroupJoinLeaveResponse(groups: ArrayList?)","description":"live.hms.video.groups.GroupJoinLeaveResponse.GroupJoinLeaveResponse","location":"lib/live.hms.video.groups/-group-join-leave-response/-group-join-leave-response.html","searchKeys":["GroupJoinLeaveResponse","fun GroupJoinLeaveResponse(groups: ArrayList?)","live.hms.video.groups.GroupJoinLeaveResponse.GroupJoinLeaveResponse"]},{"name":"fun HLSLiveStreamingHeader(title: String?, description: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.HLSLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/-h-l-s-live-streaming-header.html","searchKeys":["HLSLiveStreamingHeader","fun HLSLiveStreamingHeader(title: String?, description: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.HLSLiveStreamingHeader"]},{"name":"fun HMSAudioDeviceInfo(type: HMSAudioManager.AudioDevice, name: String)","description":"live.hms.video.audio.HMSAudioDeviceInfo.HMSAudioDeviceInfo","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/-h-m-s-audio-device-info.html","searchKeys":["HMSAudioDeviceInfo","fun HMSAudioDeviceInfo(type: HMSAudioManager.AudioDevice, name: String)","live.hms.video.audio.HMSAudioDeviceInfo.HMSAudioDeviceInfo"]},{"name":"fun HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, source: String = HMSTrackSource.REGULAR)","description":"live.hms.video.media.tracks.HMSAudioTrack.HMSAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/-h-m-s-audio-track.html","searchKeys":["HMSAudioTrack","fun HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, source: String = HMSTrackSource.REGULAR)","live.hms.video.media.tracks.HMSAudioTrack.HMSAudioTrack"]},{"name":"fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/-h-m-s-background-media.html","searchKeys":["HMSBackgroundMedia","fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia"]},{"name":"fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/-h-m-s-background-media.html","searchKeys":["HMSBackgroundMedia","fun HMSBackgroundMedia(default: Boolean?, url: String?, mediaType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.HMSBackgroundMedia"]},{"name":"fun HMSBitmapPlugin(hmsSDK: HMSSDK, hmsBitmapUpdateListener: HMSBitmapUpdateListener)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.HMSBitmapPlugin","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-h-m-s-bitmap-plugin.html","searchKeys":["HMSBitmapPlugin","fun HMSBitmapPlugin(hmsSDK: HMSSDK, hmsBitmapUpdateListener: HMSBitmapUpdateListener)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.HMSBitmapPlugin"]},{"name":"fun HMSBrowserRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, initialising: Boolean = false, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.HMSBrowserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/-h-m-s-browser-recording-state.html","searchKeys":["HMSBrowserRecordingState","fun HMSBrowserRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, initialising: Boolean = false, state: HMSRecordingState)","live.hms.video.sdk.models.HMSBrowserRecordingState.HMSBrowserRecordingState"]},{"name":"fun HMSChangeTrackStateRequest(track: HMSTrack, requestedBy: HMSPeer?, mute: Boolean)","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.HMSChangeTrackStateRequest","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/-h-m-s-change-track-state-request.html","searchKeys":["HMSChangeTrackStateRequest","fun HMSChangeTrackStateRequest(track: HMSTrack, requestedBy: HMSPeer?, mute: Boolean)","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.HMSChangeTrackStateRequest"]},{"name":"fun HMSColorPalette(alertErrorBright: String?, alertErrorBrighter: String?, alertErrorDefault: String?, alertErrorDim: String?, alertSuccess: String?, alertWarning: String?, backgroundDefault: String?, backgroundDim: String?, borderBright: String?, borderDefault: String?, onPrimaryHigh: String?, onPrimaryLow: String?, onPrimaryMedium: String?, onSecondaryHigh: String?, onSecondaryLow: String?, onSecondaryMedium: String?, onSurfaceHigh: String?, onSurfaceLow: String?, onSurfaceMedium: String?, primaryBright: String?, primaryDefault: String?, primaryDim: String?, primaryDisabled: String?, secondaryBright: String?, secondaryDefault: String?, secondaryDim: String?, secondaryDisabled: String?, surfaceBright: String?, surfaceBrighter: String?, surfaceDefault: String?, surfaceDim: String?, borderLight: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.HMSColorPalette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/-h-m-s-color-palette.html","searchKeys":["HMSColorPalette","fun HMSColorPalette(alertErrorBright: String?, alertErrorBrighter: String?, alertErrorDefault: String?, alertErrorDim: String?, alertSuccess: String?, alertWarning: String?, backgroundDefault: String?, backgroundDim: String?, borderBright: String?, borderDefault: String?, onPrimaryHigh: String?, onPrimaryLow: String?, onPrimaryMedium: String?, onSecondaryHigh: String?, onSecondaryLow: String?, onSecondaryMedium: String?, onSurfaceHigh: String?, onSurfaceLow: String?, onSurfaceMedium: String?, primaryBright: String?, primaryDefault: String?, primaryDim: String?, primaryDisabled: String?, secondaryBright: String?, secondaryDefault: String?, secondaryDim: String?, secondaryDisabled: String?, surfaceBright: String?, surfaceBrighter: String?, surfaceDefault: String?, surfaceDim: String?, borderLight: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.HMSColorPalette"]},{"name":"fun HMSConfig(userName: String, authtoken: String, metadata: String = \"\", captureNetworkQualityInPreview: Boolean = false, initEndpoint: String = cDefaultInitEndpoint)","description":"live.hms.video.sdk.models.HMSConfig.HMSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-config/-h-m-s-config.html","searchKeys":["HMSConfig","fun HMSConfig(userName: String, authtoken: String, metadata: String = \"\", captureNetworkQualityInPreview: Boolean = false, initEndpoint: String = cDefaultInitEndpoint)","live.hms.video.sdk.models.HMSConfig.HMSConfig"]},{"name":"fun HMSCoroutineScope.launchWithTimeout(block: suspend CoroutineScope.() -> Unit): Job","description":"live.hms.video.utils.HMSCoroutineScope.launchWithTimeout","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/launch-with-timeout.html","searchKeys":["launchWithTimeout","fun HMSCoroutineScope.launchWithTimeout(block: suspend CoroutineScope.() -> Unit): Job","live.hms.video.utils.HMSCoroutineScope.launchWithTimeout"]},{"name":"fun HMSCreateWhiteBoardResponse(id: String?, owner: String?)","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.HMSCreateWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/-h-m-s-create-white-board-response.html","searchKeys":["HMSCreateWhiteBoardResponse","fun HMSCreateWhiteBoardResponse(id: String?, owner: String?)","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.HMSCreateWhiteBoardResponse"]},{"name":"fun HMSException(code: Int, name: String, action: String, message: String, description: String, cause: Throwable? = null, isTerminal: Boolean = true, params: HashMap = hashMapOf())","description":"live.hms.video.error.HMSException.HMSException","location":"lib/live.hms.video.error/-h-m-s-exception/-h-m-s-exception.html","searchKeys":["HMSException","fun HMSException(code: Int, name: String, action: String, message: String, description: String, cause: Throwable? = null, isTerminal: Boolean = true, params: HashMap = hashMapOf())","live.hms.video.error.HMSException.HMSException"]},{"name":"fun HMSGetWhiteBoardResponse(id: String?, addr: String?, token: String?, owner: String?, permissions: List?)","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.HMSGetWhiteBoardResponse","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/-h-m-s-get-white-board-response.html","searchKeys":["HMSGetWhiteBoardResponse","fun HMSGetWhiteBoardResponse(id: String?, addr: String?, token: String?, owner: String?, permissions: List?)","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.HMSGetWhiteBoardResponse"]},{"name":"fun HMSHLSConfig(meetingURLVariants: List? = null, hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","description":"live.hms.video.sdk.models.HMSHLSConfig.HMSHLSConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/-h-m-s-h-l-s-config.html","searchKeys":["HMSHLSConfig","fun HMSHLSConfig(meetingURLVariants: List? = null, hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null)","live.hms.video.sdk.models.HMSHLSConfig.HMSHLSConfig"]},{"name":"fun HMSHLSMeetingURLVariant(meetingUrl: String? = null, metadata: String = \"\")","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.HMSHLSMeetingURLVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/-h-m-s-h-l-s-meeting-u-r-l-variant.html","searchKeys":["HMSHLSMeetingURLVariant","fun HMSHLSMeetingURLVariant(meetingUrl: String? = null, metadata: String = \"\")","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.HMSHLSMeetingURLVariant"]},{"name":"fun HMSHLSStreamingState(running: Boolean, variants: ArrayList?, error: HMSException?, state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSHLSStreamingState.HMSHLSStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/-h-m-s-h-l-s-streaming-state.html","searchKeys":["HMSHLSStreamingState","fun HMSHLSStreamingState(running: Boolean, variants: ArrayList?, error: HMSException?, state: HMSStreamingState)","live.hms.video.sdk.models.HMSHLSStreamingState.HMSHLSStreamingState"]},{"name":"fun HMSHLSTimedMetadata(payload: String, duration: Long)","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.HMSHLSTimedMetadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/-h-m-s-h-l-s-timed-metadata.html","searchKeys":["HMSHLSTimedMetadata","fun HMSHLSTimedMetadata(payload: String, duration: Long)","live.hms.video.sdk.models.HMSHLSTimedMetadata.HMSHLSTimedMetadata"]},{"name":"fun HMSHLSVariant(hlsStreamUrl: String?, meetingUrl: String?, metadata: String?, startedAt: Long?, updatedAt: Long?, state: BeamStreamingStates?, playlistType: HMSHLSPlaylistType?)","description":"live.hms.video.sdk.models.HMSHLSVariant.HMSHLSVariant","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/-h-m-s-h-l-s-variant.html","searchKeys":["HMSHLSVariant","fun HMSHLSVariant(hlsStreamUrl: String?, meetingUrl: String?, metadata: String?, startedAt: Long?, updatedAt: Long?, state: BeamStreamingStates?, playlistType: HMSHLSPlaylistType?)","live.hms.video.sdk.models.HMSHLSVariant.HMSHLSVariant"]},{"name":"fun HMSHlsRecordingConfig(singleFilePerLayer: Boolean, videoOnDemand: Boolean)","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.HMSHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/-h-m-s-hls-recording-config.html","searchKeys":["HMSHlsRecordingConfig","fun HMSHlsRecordingConfig(singleFilePerLayer: Boolean, videoOnDemand: Boolean)","live.hms.video.sdk.models.HMSHlsRecordingConfig.HMSHlsRecordingConfig"]},{"name":"fun HMSLayoutOptions(key1: String?, key2: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.HMSLayoutOptions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/-h-m-s-layout-options.html","searchKeys":["HMSLayoutOptions","fun HMSLayoutOptions(key1: String?, key2: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.HMSLayoutOptions"]},{"name":"fun HMSLocalAudioStats(jitter: Double?, roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?, packetsSent: Long?)","description":"live.hms.video.connection.stats.HMSLocalAudioStats.HMSLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/-h-m-s-local-audio-stats.html","searchKeys":["HMSLocalAudioStats","fun HMSLocalAudioStats(jitter: Double?, roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, packetLoss: Long?, packetsSent: Long?)","live.hms.video.connection.stats.HMSLocalAudioStats.HMSLocalAudioStats"]},{"name":"fun HMSLocalVideoStats(jitter: Double?, roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, resolution: HMSVideoResolution?, frameRate: Double?, qualityLimitationReason: QualityLimitationReasons, hmsLayer: HMSLayer?, packetLoss: Long?, packetsSent: Long?)","description":"live.hms.video.connection.stats.HMSLocalVideoStats.HMSLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/-h-m-s-local-video-stats.html","searchKeys":["HMSLocalVideoStats","fun HMSLocalVideoStats(jitter: Double?, roundTripTime: Double?, bytesSent: Long?, bitrate: Double?, resolution: HMSVideoResolution?, frameRate: Double?, qualityLimitationReason: QualityLimitationReasons, hmsLayer: HMSLayer?, packetLoss: Long?, packetsSent: Long?)","live.hms.video.connection.stats.HMSLocalVideoStats.HMSLocalVideoStats"]},{"name":"fun HMSLogSettings(maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, isLogStorageEnabled: Boolean = false, level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","description":"live.hms.video.media.settings.HMSLogSettings.HMSLogSettings","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/-h-m-s-log-settings.html","searchKeys":["HMSLogSettings","fun HMSLogSettings(maxDirSizeInBytes: Long = LogAlarmManager.DEFAULT_DIR_SIZE, isLogStorageEnabled: Boolean = false, level: HMSLogger.LogLevel = HMSLogger.LogLevel.DEBUG)","live.hms.video.media.settings.HMSLogSettings.HMSLogSettings"]},{"name":"fun HMSMediaStream(nativeStream: MediaStream)","description":"live.hms.video.media.streams.HMSMediaStream.HMSMediaStream","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/-h-m-s-media-stream.html","searchKeys":["HMSMediaStream","fun HMSMediaStream(nativeStream: MediaStream)","live.hms.video.media.streams.HMSMediaStream.HMSMediaStream"]},{"name":"fun HMSMessageSendResponse(timestamp: Long, messageId: String? = \"\")","description":"live.hms.video.sdk.models.HMSMessageSendResponse.HMSMessageSendResponse","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/-h-m-s-message-send-response.html","searchKeys":["HMSMessageSendResponse","fun HMSMessageSendResponse(timestamp: Long, messageId: String? = \"\")","live.hms.video.sdk.models.HMSMessageSendResponse.HMSMessageSendResponse"]},{"name":"fun HMSNetworkQuality(downlinkQuality: Int)","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality.HMSNetworkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/-h-m-s-network-quality.html","searchKeys":["HMSNetworkQuality","fun HMSNetworkQuality(downlinkQuality: Int)","live.hms.video.connection.stats.quality.HMSNetworkQuality.HMSNetworkQuality"]},{"name":"fun HMSPollLeaderboardEntry(position: Long?, score: Long?, totalResponses: Long?, correctResponses: Long?, duration: Long?, peer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.HMSPollLeaderboardEntry","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/-h-m-s-poll-leaderboard-entry.html","searchKeys":["HMSPollLeaderboardEntry","fun HMSPollLeaderboardEntry(position: Long?, score: Long?, totalResponses: Long?, correctResponses: Long?, duration: Long?, peer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.HMSPollLeaderboardEntry.HMSPollLeaderboardEntry"]},{"name":"fun HMSPollLeaderboardResponse(pollId: String, last: Boolean?, leaderboard: List?, totalUsers: Long?, votedUsers: Long?, correctUsers: Long?, avgTime: Long?, avgScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.HMSPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/-h-m-s-poll-leaderboard-response.html","searchKeys":["HMSPollLeaderboardResponse","fun HMSPollLeaderboardResponse(pollId: String, last: Boolean?, leaderboard: List?, totalUsers: Long?, votedUsers: Long?, correctUsers: Long?, avgTime: Long?, avgScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardResponse.HMSPollLeaderboardResponse"]},{"name":"fun HMSPollLeaderboardSummary(totalPeersCount: Int?, respondedPeersCount: Int?, respondedCorrectlyPeersCount: Int?, averageTime: Long?, averageScore: Float?)","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.HMSPollLeaderboardSummary","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/-h-m-s-poll-leaderboard-summary.html","searchKeys":["HMSPollLeaderboardSummary","fun HMSPollLeaderboardSummary(totalPeersCount: Int?, respondedPeersCount: Int?, respondedCorrectlyPeersCount: Int?, averageTime: Long?, averageScore: Float?)","live.hms.video.polls.network.HMSPollLeaderboardSummary.HMSPollLeaderboardSummary"]},{"name":"fun HMSPollQuestion(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 0, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = null, options: List? = null, correctAnswer: HMSPollQuestionAnswer? = null, negative: Boolean = false, myResponses: MutableList = mutableListOf())","description":"live.hms.video.polls.models.question.HMSPollQuestion.HMSPollQuestion","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/-h-m-s-poll-question.html","searchKeys":["HMSPollQuestion","fun HMSPollQuestion(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 0, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = null, options: List? = null, correctAnswer: HMSPollQuestionAnswer? = null, negative: Boolean = false, myResponses: MutableList = mutableListOf())","live.hms.video.polls.models.question.HMSPollQuestion.HMSPollQuestion"]},{"name":"fun HMSPollQuestionAnswer(hidden: Boolean = false, option: Int? = null, options: List? = null, text: String = \"\", caseSensitive: Boolean = false, emptySpaceTrimmed: Boolean = false)","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.HMSPollQuestionAnswer","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/-h-m-s-poll-question-answer.html","searchKeys":["HMSPollQuestionAnswer","fun HMSPollQuestionAnswer(hidden: Boolean = false, option: Int? = null, options: List? = null, text: String = \"\", caseSensitive: Boolean = false, emptySpaceTrimmed: Boolean = false)","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.HMSPollQuestionAnswer"]},{"name":"fun HMSPollQuestionOption(index: Int, text: String? = \"\", weight: Int? = null, case: Boolean = false, trim: Boolean = false, voteCount: Long = 0)","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.HMSPollQuestionOption","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/-h-m-s-poll-question-option.html","searchKeys":["HMSPollQuestionOption","fun HMSPollQuestionOption(index: Int, text: String? = \"\", weight: Int? = null, case: Boolean = false, trim: Boolean = false, voteCount: Long = 0)","live.hms.video.polls.models.question.HMSPollQuestionOption.HMSPollQuestionOption"]},{"name":"fun HMSPollQuestionResponse(responseId: String, index: Int, questionType: HMSPollQuestionType, skipped: Boolean, selectedOption: Int?, selectedOptions: List?, text: String?, answerChanged: Boolean)","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.HMSPollQuestionResponse","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/-h-m-s-poll-question-response.html","searchKeys":["HMSPollQuestionResponse","fun HMSPollQuestionResponse(responseId: String, index: Int, questionType: HMSPollQuestionType, skipped: Boolean, selectedOption: Int?, selectedOptions: List?, text: String?, answerChanged: Boolean)","live.hms.video.polls.models.network.HMSPollQuestionResponse.HMSPollQuestionResponse"]},{"name":"fun HMSPollResponseBuilder(hmsPoll: HmsPoll, userId: String?)","description":"live.hms.video.polls.HMSPollResponseBuilder.HMSPollResponseBuilder","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/-h-m-s-poll-response-builder.html","searchKeys":["HMSPollResponseBuilder","fun HMSPollResponseBuilder(hmsPoll: HmsPoll, userId: String?)","live.hms.video.polls.HMSPollResponseBuilder.HMSPollResponseBuilder"]},{"name":"fun HMSPollResponsePeerInfo(hash: String, peerid: String?, userid: String?, username: String?)","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.HMSPollResponsePeerInfo","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/-h-m-s-poll-response-peer-info.html","searchKeys":["HMSPollResponsePeerInfo","fun HMSPollResponsePeerInfo(hash: String, peerid: String?, userid: String?, username: String?)","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.HMSPollResponsePeerInfo"]},{"name":"fun HMSRTCStats(bytesSent: Long, bytesReceived: Long, packetsReceived: Long, packetsLost: Long, bitrateSent: Double, bitrateReceived: Double, roundTripTime: Double)","description":"live.hms.video.connection.stats.HMSRTCStats.HMSRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/-h-m-s-r-t-c-stats.html","searchKeys":["HMSRTCStats","fun HMSRTCStats(bytesSent: Long, bytesReceived: Long, packetsReceived: Long, packetsLost: Long, bitrateSent: Double, bitrateReceived: Double, roundTripTime: Double)","live.hms.video.connection.stats.HMSRTCStats.HMSRTCStats"]},{"name":"fun HMSRTCStatsReport(combined: HMSRTCStats, audio: HMSRTCStats, video: HMSRTCStats)","description":"live.hms.video.connection.stats.HMSRTCStatsReport.HMSRTCStatsReport","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/-h-m-s-r-t-c-stats-report.html","searchKeys":["HMSRTCStatsReport","fun HMSRTCStatsReport(combined: HMSRTCStats, audio: HMSRTCStats, video: HMSRTCStats)","live.hms.video.connection.stats.HMSRTCStatsReport.HMSRTCStatsReport"]},{"name":"fun HMSRecordingConfig(meetingUrl: String? = null, rtmpUrls: List, record: Boolean, resolution: HMSRtmpVideoResolution? = null)","description":"live.hms.video.sdk.models.HMSRecordingConfig.HMSRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/-h-m-s-recording-config.html","searchKeys":["HMSRecordingConfig","fun HMSRecordingConfig(meetingUrl: String? = null, rtmpUrls: List, record: Boolean, resolution: HMSRtmpVideoResolution? = null)","live.hms.video.sdk.models.HMSRecordingConfig.HMSRecordingConfig"]},{"name":"fun HMSRemoteAudioStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?)","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.HMSRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/-h-m-s-remote-audio-stats.html","searchKeys":["HMSRemoteAudioStats","fun HMSRemoteAudioStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?)","live.hms.video.connection.stats.HMSRemoteAudioStats.HMSRemoteAudioStats"]},{"name":"fun HMSRemoteVideoStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?, resolution: HMSVideoResolution?, frameRate: Double?)","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.HMSRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/-h-m-s-remote-video-stats.html","searchKeys":["HMSRemoteVideoStats","fun HMSRemoteVideoStats(jitter: Double?, bytesReceived: Long?, bitrate: Double?, packetsReceived: Long?, packetsLost: Int?, resolution: HMSVideoResolution?, frameRate: Double?)","live.hms.video.connection.stats.HMSRemoteVideoStats.HMSRemoteVideoStats"]},{"name":"fun HMSRemovedFromRoom(reason: String, peerWhoRemoved: HMSPeer?, roomWasEnded: Boolean)","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.HMSRemovedFromRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/-h-m-s-removed-from-room.html","searchKeys":["HMSRemovedFromRoom","fun HMSRemovedFromRoom(reason: String, peerWhoRemoved: HMSPeer?, roomWasEnded: Boolean)","live.hms.video.sdk.models.HMSRemovedFromRoom.HMSRemovedFromRoom"]},{"name":"fun HMSRoomLayout(data: List?, last: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout.html","searchKeys":["HMSRoomLayout","fun HMSRoomLayout(data: List?, last: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayout"]},{"name":"fun HMSRoomLayoutData(appId: String?, id: String?, options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, role: String?, roleId: String?, templateId: String?, typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, themes: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomLayoutData","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-layout-data.html","searchKeys":["HMSRoomLayoutData","fun HMSRoomLayoutData(appId: String?, id: String?, options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?, role: String?, roleId: String?, templateId: String?, typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?, logo: HMSRoomLayout.HMSRoomLayoutData.Logo?, screens: HMSRoomLayout.HMSRoomLayoutData.Screens?, themes: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomLayoutData"]},{"name":"fun HMSRoomTheme(default: Boolean?, name: String?, palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSRoomTheme","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-room-theme.html","searchKeys":["HMSRoomTheme","fun HMSRoomTheme(default: Boolean?, name: String?, palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSRoomTheme"]},{"name":"fun HMSRtmpStreamingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, state: HMSStreamingState)","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.HMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/-h-m-s-rtmp-streaming-state.html","searchKeys":["HMSRtmpStreamingState","fun HMSRtmpStreamingState(running: Boolean, error: HMSException?, startedAt: Long?, stoppedAt: Long?, state: HMSStreamingState)","live.hms.video.sdk.models.HMSRtmpStreamingState.HMSRtmpStreamingState"]},{"name":"fun HMSRtmpVideoResolution(width: Int, height: Int)","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.HMSRtmpVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/-h-m-s-rtmp-video-resolution.html","searchKeys":["HMSRtmpVideoResolution","fun HMSRtmpVideoResolution(width: Int, height: Int)","live.hms.video.media.settings.HMSRtmpVideoResolution.HMSRtmpVideoResolution"]},{"name":"fun HMSScreenCaptureService()","description":"live.hms.video.services.HMSScreenCaptureService.HMSScreenCaptureService","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-h-m-s-screen-capture-service.html","searchKeys":["HMSScreenCaptureService","fun HMSScreenCaptureService()","live.hms.video.services.HMSScreenCaptureService.HMSScreenCaptureService"]},{"name":"fun HMSServerRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HMSServerRecordingState.HMSServerRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/-h-m-s-server-recording-state.html","searchKeys":["HMSServerRecordingState","fun HMSServerRecordingState(running: Boolean, error: HMSException?, startedAt: Long?, state: HMSRecordingState)","live.hms.video.sdk.models.HMSServerRecordingState.HMSServerRecordingState"]},{"name":"fun HMSSimulcastLayerDefinition(resolution: HMSVideoResolution, layer: HMSLayer)","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.HMSSimulcastLayerDefinition","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/-h-m-s-simulcast-layer-definition.html","searchKeys":["HMSSimulcastLayerDefinition","fun HMSSimulcastLayerDefinition(resolution: HMSVideoResolution, layer: HMSLayer)","live.hms.video.media.settings.HMSSimulcastLayerDefinition.HMSSimulcastLayerDefinition"]},{"name":"fun HMSTranscriptionPermissions()","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.HMSTranscriptionPermissions","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/-h-m-s-transcription-permissions.html","searchKeys":["HMSTranscriptionPermissions","fun HMSTranscriptionPermissions()","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.HMSTranscriptionPermissions"]},{"name":"fun HMSVideoDecoderFactory(eglContext: EglBase.Context, forceSoftwareDecoder: Boolean = false)","description":"live.hms.video.factories.HMSVideoDecoderFactory.HMSVideoDecoderFactory","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/-h-m-s-video-decoder-factory.html","searchKeys":["HMSVideoDecoderFactory","fun HMSVideoDecoderFactory(eglContext: EglBase.Context, forceSoftwareDecoder: Boolean = false)","live.hms.video.factories.HMSVideoDecoderFactory.HMSVideoDecoderFactory"]},{"name":"fun HMSVideoResolution(width: Int, height: Int)","description":"live.hms.video.media.settings.HMSVideoResolution.HMSVideoResolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/-h-m-s-video-resolution.html","searchKeys":["HMSVideoResolution","fun HMSVideoResolution(width: Int, height: Int)","live.hms.video.media.settings.HMSVideoResolution.HMSVideoResolution"]},{"name":"fun HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, source: String)","description":"live.hms.video.media.tracks.HMSVideoTrack.HMSVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/-h-m-s-video-track.html","searchKeys":["HMSVideoTrack","fun HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, source: String)","live.hms.video.media.tracks.HMSVideoTrack.HMSVideoTrack"]},{"name":"fun HMSVirtualBackground(backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun HMSVirtualBackground(backgroundMedia: List?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.HMSVirtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(backgroundMedia: List?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun HMSWhiteBoardPermission(admin: Boolean, read: Boolean, write: Boolean)","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.HMSWhiteBoardPermission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/-h-m-s-white-board-permission.html","searchKeys":["HMSWhiteBoardPermission","fun HMSWhiteBoardPermission(admin: Boolean, read: Boolean, write: Boolean)","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.HMSWhiteBoardPermission"]},{"name":"fun HMSWhiteboard(id: String, title: String? = null, owner: HMSPeer? = null, isOwner: Boolean, url: String, state: State = State.Stopped)","description":"live.hms.video.whiteboard.HMSWhiteboard.HMSWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/-h-m-s-whiteboard.html","searchKeys":["HMSWhiteboard","fun HMSWhiteboard(id: String, title: String? = null, owner: HMSPeer? = null, isOwner: Boolean, url: String, state: State = State.Stopped)","live.hms.video.whiteboard.HMSWhiteboard.HMSWhiteboard"]},{"name":"fun HMSWhiteboardPermissions(admin: List, reader: List, writer: List)","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.HMSWhiteboardPermissions","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/-h-m-s-whiteboard-permissions.html","searchKeys":["HMSWhiteboardPermissions","fun HMSWhiteboardPermissions(admin: List, reader: List, writer: List)","live.hms.video.whiteboard.HMSWhiteboardPermissions.HMSWhiteboardPermissions"]},{"name":"fun HandRaise()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise.HandRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-hand-raise/-hand-raise.html","searchKeys":["HandRaise","fun HandRaise()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise.HandRaise"]},{"name":"fun Hls(enabled: Boolean, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Hls.Hls","location":"lib/live.hms.video.sdk.peerlist.models/-hls/-hls.html","searchKeys":["Hls","fun Hls(enabled: Boolean, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Hls.Hls"]},{"name":"fun HmsHlsRecordingState(running: Boolean?, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, error: HMSException?, state: HMSRecordingState)","description":"live.hms.video.sdk.models.HmsHlsRecordingState.HmsHlsRecordingState","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/-hms-hls-recording-state.html","searchKeys":["HmsHlsRecordingState","fun HmsHlsRecordingState(running: Boolean?, startedAt: Long?, hlsRecordingConfig: HMSHlsRecordingConfig?, error: HMSException?, state: HMSRecordingState)","live.hms.video.sdk.models.HmsHlsRecordingState.HmsHlsRecordingState"]},{"name":"fun HmsPollAnswer(questionId: Int, questionType: HMSPollQuestionType, skipped: Boolean = false, selectedOption: Int = 0, selectedOptions: List? = null, answerText: String = \"\", update: Boolean = false, durationMillis: Long? = null)","description":"live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/-hms-poll-answer.html","searchKeys":["HmsPollAnswer","fun HmsPollAnswer(questionId: Int, questionType: HMSPollQuestionType, skipped: Boolean = false, selectedOption: Int = 0, selectedOptions: List? = null, answerText: String = \"\", update: Boolean = false, durationMillis: Long? = null)","live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer"]},{"name":"fun HmsPollAnswer(r: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/-hms-poll-answer.html","searchKeys":["HmsPollAnswer","fun HmsPollAnswer(r: HMSPollQuestionResponse)","live.hms.video.polls.models.answer.HmsPollAnswer.HmsPollAnswer"]},{"name":"fun HmsPollCreationParams(pollId: String? = null, title: String, duration: Long = 0, anonymous: Boolean = false, visibility: Boolean = true, locked: Boolean = false, mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, vote: List? = null, responses: List? = null, category: HmsPollCategory)","description":"live.hms.video.polls.models.HmsPollCreationParams.HmsPollCreationParams","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/-hms-poll-creation-params.html","searchKeys":["HmsPollCreationParams","fun HmsPollCreationParams(pollId: String? = null, title: String, duration: Long = 0, anonymous: Boolean = false, visibility: Boolean = true, locked: Boolean = false, mode: HmsPollUserTrackingMode = HmsPollUserTrackingMode.USER_ID, vote: List? = null, responses: List? = null, category: HmsPollCategory)","live.hms.video.polls.models.HmsPollCreationParams.HmsPollCreationParams"]},{"name":"fun HmsPollQuestionContainer(question: HMSPollQuestion, options: List? = question.options, correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.HmsPollQuestionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/-hms-poll-question-container.html","searchKeys":["HmsPollQuestionContainer","fun HmsPollQuestionContainer(question: HMSPollQuestion, options: List? = question.options, correctAnswer: HMSPollQuestionAnswer? = question.correctAnswer)","live.hms.video.polls.models.question.HmsPollQuestionContainer.HmsPollQuestionContainer"]},{"name":"fun HmsPollQuestionCreation(q: HMSPollQuestion)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/-hms-poll-question-creation.html","searchKeys":["HmsPollQuestionCreation","fun HmsPollQuestionCreation(q: HMSPollQuestion)","live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation"]},{"name":"fun HmsPollQuestionCreation(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 1, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = 1, negative: Boolean = false)","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/-hms-poll-question-creation.html","searchKeys":["HmsPollQuestionCreation","fun HmsPollQuestionCreation(questionID: Int, type: HMSPollQuestionType, text: String, canSkip: Boolean = false, canChangeResponse: Boolean = true, duration: Long = 0, weight: Int = 1, answerShortMinLength: Long? = 1, answerLongMinLength: Long? = 1, negative: Boolean = false)","live.hms.video.polls.models.question.HmsPollQuestionCreation.HmsPollQuestionCreation"]},{"name":"fun HmsPollQuestionSettingContainer(question: HMSPollQuestion)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/-hms-poll-question-setting-container.html","searchKeys":["HmsPollQuestionSettingContainer","fun HmsPollQuestionSettingContainer(question: HMSPollQuestion)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer"]},{"name":"fun HmsPollQuestionSettingContainer(questionContainer: HmsPollQuestionCreation, options: List?, correctAnswer: HMSPollQuestionAnswer?)","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/-hms-poll-question-setting-container.html","searchKeys":["HmsPollQuestionSettingContainer","fun HmsPollQuestionSettingContainer(questionContainer: HmsPollQuestionCreation, options: List?, correctAnswer: HMSPollQuestionAnswer?)","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.HmsPollQuestionSettingContainer"]},{"name":"fun HmsTranscript(start: Int, end: Int, transcript: String, peerId: String, isFinal: Boolean)","description":"live.hms.video.sdk.transcripts.HmsTranscript.HmsTranscript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/-hms-transcript.html","searchKeys":["HmsTranscript","fun HmsTranscript(start: Int, end: Int, transcript: String, peerId: String, isFinal: Boolean)","live.hms.video.sdk.transcripts.HmsTranscript.HmsTranscript"]},{"name":"fun HmsTranscripts(transcripts: List)","description":"live.hms.video.sdk.transcripts.HmsTranscripts.HmsTranscripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/-hms-transcripts.html","searchKeys":["HmsTranscripts","fun HmsTranscripts(transcripts: List)","live.hms.video.sdk.transcripts.HmsTranscripts.HmsTranscripts"]},{"name":"fun HmsUtilities()","description":"live.hms.video.utils.HmsUtilities.HmsUtilities","location":"lib/live.hms.video.utils/-hms-utilities/-hms-utilities.html","searchKeys":["HmsUtilities","fun HmsUtilities()","live.hms.video.utils.HmsUtilities.HmsUtilities"]},{"name":"fun IceCandidatePair()","description":"live.hms.video.diagnostics.models.IceCandidatePair.IceCandidatePair","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/-ice-candidate-pair.html","searchKeys":["IceCandidatePair","fun IceCandidatePair()","live.hms.video.diagnostics.models.IceCandidatePair.IceCandidatePair"]},{"name":"fun ImageCaptureModel(image: Image, metadata: CaptureResult, orientation: Int?, format: Int)","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.ImageCaptureModel","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/-image-capture-model.html","searchKeys":["ImageCaptureModel","fun ImageCaptureModel(image: Image, metadata: CaptureResult, orientation: Int?, format: Int)","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.ImageCaptureModel"]},{"name":"fun Item(bitrate: Int, frameRate: Int)","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.Item","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/-item.html","searchKeys":["Item","fun Item(bitrate: Int, frameRate: Int)","live.hms.video.media.settings.HMSSimulcastSettings.Item.Item"]},{"name":"fun JSONArray.toList(): List","description":"live.hms.video.utils.toList","location":"lib/live.hms.video.utils/to-list.html","searchKeys":["toList","fun JSONArray.toList(): List","live.hms.video.utils.toList"]},{"name":"fun JSONObject.toMap(): HashMap","description":"live.hms.video.utils.toMap","location":"lib/live.hms.video.utils/to-map.html","searchKeys":["toMap","fun JSONObject.toMap(): HashMap","live.hms.video.utils.toMap"]},{"name":"fun JoinForm(goLiveBtnLabel: String?, joinBtnLabel: String?, joinBtnType: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.JoinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/-join-form.html","searchKeys":["JoinForm","fun JoinForm(goLiveBtnLabel: String?, joinBtnLabel: String?, joinBtnType: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.JoinForm"]},{"name":"fun LastTrackState(isLocalVideoMuted: Boolean, isLocalAudioMuted: Boolean, isScreenSharePublished: Boolean, isCameraFacing: HMSVideoTrackSettings.CameraFacing)","description":"live.hms.video.sdk.models.LastTrackState.LastTrackState","location":"lib/live.hms.video.sdk.models/-last-track-state/-last-track-state.html","searchKeys":["LastTrackState","fun LastTrackState(isLocalVideoMuted: Boolean, isLocalAudioMuted: Boolean, isScreenSharePublished: Boolean, isCameraFacing: HMSVideoTrackSettings.CameraFacing)","live.hms.video.sdk.models.LastTrackState.LastTrackState"]},{"name":"fun LayerParams(rid: String?, scaleResolutionDownBy: Float?, maxBitrate: Int?, maxFramerate: Int?)","description":"live.hms.video.sdk.models.role.LayerParams.LayerParams","location":"lib/live.hms.video.sdk.models.role/-layer-params/-layer-params.html","searchKeys":["LayerParams","fun LayerParams(rid: String?, scaleResolutionDownBy: Float?, maxBitrate: Int?, maxFramerate: Int?)","live.hms.video.sdk.models.role.LayerParams.LayerParams"]},{"name":"fun LayoutRequestOptions(endpoint: String?)","description":"live.hms.video.signal.init.LayoutRequestOptions.LayoutRequestOptions","location":"lib/live.hms.video.signal.init/-layout-request-options/-layout-request-options.html","searchKeys":["LayoutRequestOptions","fun LayoutRequestOptions(endpoint: String?)","live.hms.video.signal.init.LayoutRequestOptions.LayoutRequestOptions"]},{"name":"fun LeaderboardQuestion(questionIndex: Long?, position: Long?, duration: Long?, totalResponse: Long?, correctResponses: Long?, score: Float?, pollPeer: HMSPollResponsePeerInfo?)","description":"live.hms.video.polls.network.LeaderboardQuestion.LeaderboardQuestion","location":"lib/live.hms.video.polls.network/-leaderboard-question/-leaderboard-question.html","searchKeys":["LeaderboardQuestion","fun LeaderboardQuestion(questionIndex: Long?, position: Long?, duration: Long?, totalResponse: Long?, correctResponses: Long?, score: Float?, pollPeer: HMSPollResponsePeerInfo?)","live.hms.video.polls.network.LeaderboardQuestion.LeaderboardQuestion"]},{"name":"fun Leave()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave.Leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-leave/-leave.html","searchKeys":["Leave","fun Leave()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Leave.Leave"]},{"name":"fun LocalBinder()","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder.LocalBinder","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/-local-binder.html","searchKeys":["LocalBinder","fun LocalBinder()","live.hms.video.services.HMSScreenCaptureService.LocalBinder.LocalBinder"]},{"name":"fun LocalTrack()","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalTrack","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-track.html","searchKeys":["LocalTrack","fun LocalTrack()","live.hms.video.connection.degredation.Track.LocalTrack.LocalTrack"]},{"name":"fun LogAlarmManager()","description":"live.hms.video.services.LogAlarmManager.LogAlarmManager","location":"lib/live.hms.video.services/-log-alarm-manager/-log-alarm-manager.html","searchKeys":["LogAlarmManager","fun LogAlarmManager()","live.hms.video.services.LogAlarmManager.LogAlarmManager"]},{"name":"fun Logo(url: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.Logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/-logo.html","searchKeys":["Logo","fun Logo(url: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.Logo"]},{"name":"fun MediaServerReport()","description":"live.hms.video.diagnostics.models.MediaServerReport.MediaServerReport","location":"lib/live.hms.video.diagnostics.models/-media-server-report/-media-server-report.html","searchKeys":["MediaServerReport","fun MediaServerReport()","live.hms.video.diagnostics.models.MediaServerReport.MediaServerReport"]},{"name":"fun MicrophoneUtils()","description":"live.hms.video.utils.MicrophoneUtils.MicrophoneUtils","location":"lib/live.hms.video.utils/-microphone-utils/-microphone-utils.html","searchKeys":["MicrophoneUtils","fun MicrophoneUtils()","live.hms.video.utils.MicrophoneUtils.MicrophoneUtils"]},{"name":"fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap)","description":"live.hms.video.signal.init.NetworkHealth.NetworkHealth","location":"lib/live.hms.video.signal.init/-network-health/-network-health.html","searchKeys":["NetworkHealth","fun NetworkHealth(timeout: Long, url: String, scoreMap: SortedMap)","live.hms.video.signal.init.NetworkHealth.NetworkHealth"]},{"name":"fun NoiseCancellationElement(enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/-noise-cancellation-element.html","searchKeys":["NoiseCancellationElement","fun NoiseCancellationElement(enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.NoiseCancellationElement"]},{"name":"fun NoiseCancellationElement(enabled: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.NoiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/-noise-cancellation-element.html","searchKeys":["NoiseCancellationElement","fun NoiseCancellationElement(enabled: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.NoiseCancellationElement"]},{"name":"fun NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.NoiseCancellationFactoryImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/-noise-cancellation-factory-impl.html","searchKeys":["NoiseCancellationFactoryImpl","fun NoiseCancellationFactoryImpl(noiseCancellationStatusChecker: NoiseCancellationStatusChecker)","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.NoiseCancellationFactoryImpl"]},{"name":"fun NoiseCancellationFake(libraryPresent: Boolean, enabledFromDashboard: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.NoiseCancellationFake","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/-noise-cancellation-fake.html","searchKeys":["NoiseCancellationFake","fun NoiseCancellationFake(libraryPresent: Boolean, enabledFromDashboard: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationFake.NoiseCancellationFake"]},{"name":"fun NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.NoiseCancellationImpl","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/-noise-cancellation-impl.html","searchKeys":["NoiseCancellationImpl","fun NoiseCancellationImpl(krisp: KrispAudioProcessingImpl, isNoiseCancellationFlagEnabled: () -> Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.NoiseCancellationImpl"]},{"name":"fun NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.NoiseCancellationStatusChecker","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/-noise-cancellation-status-checker.html","searchKeys":["NoiseCancellationStatusChecker","fun NoiseCancellationStatusChecker(context: Context, isFlagEnabled: () -> Boolean?, isEnabledFromTemplate: () -> Boolean?)","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.NoiseCancellationStatusChecker"]},{"name":"fun NotAvailable(reason: String)","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.NotAvailable","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/-not-available.html","searchKeys":["NotAvailable","fun NotAvailable(reason: String)","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.NotAvailable"]},{"name":"fun OfflineAnalyticsPeerInfo()","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.OfflineAnalyticsPeerInfo","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/-offline-analytics-peer-info.html","searchKeys":["OfflineAnalyticsPeerInfo","fun OfflineAnalyticsPeerInfo()","live.hms.video.sdk.OfflineAnalyticsPeerInfo.OfflineAnalyticsPeerInfo"]},{"name":"fun OnStageExp(bringToStageLabel: String?, offStageRoles: List?, onStageRole: String?, removeFromStageLabel: String?, skipPreviewForRoleChange: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.OnStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/-on-stage-exp.html","searchKeys":["OnStageExp","fun OnStageExp(bringToStageLabel: String?, offStageRoles: List?, onStageRole: String?, removeFromStageLabel: String?, skipPreviewForRoleChange: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.OnStageExp"]},{"name":"fun OnTranscriptionError(code: Int?, message: String?)","description":"live.hms.video.sdk.models.OnTranscriptionError.OnTranscriptionError","location":"lib/live.hms.video.sdk.models/-on-transcription-error/-on-transcription-error.html","searchKeys":["OnTranscriptionError","fun OnTranscriptionError(code: Int?, message: String?)","live.hms.video.sdk.models.OnTranscriptionError.OnTranscriptionError"]},{"name":"fun OrientationTools()","description":"live.hms.video.media.capturers.camera.utils.OrientationTools.OrientationTools","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/-orientation-tools.html","searchKeys":["OrientationTools","fun OrientationTools()","live.hms.video.media.capturers.camera.utils.OrientationTools.OrientationTools"]},{"name":"fun PacketLossTracks(ssrc: Long?, packetLoss: Int?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.PacketLossTracks","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/-packet-loss-tracks.html","searchKeys":["PacketLossTracks","fun PacketLossTracks(ssrc: Long?, packetLoss: Int?)","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.PacketLossTracks"]},{"name":"fun ParticipantList()","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList.ParticipantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-participant-list/-participant-list.html","searchKeys":["ParticipantList","fun ParticipantList()","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList.ParticipantList"]},{"name":"fun Peer(bytesSent: BigInteger?, packetsSent: BigInteger?, bytesReceived: BigInteger?, packetsReceived: BigInteger?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, availableOutgoingBitrate: Double?, availableIncomingBitrate: Double?, timestampUs: Double?)","description":"live.hms.video.connection.degredation.Peer.Peer","location":"lib/live.hms.video.connection.degredation/-peer/-peer.html","searchKeys":["Peer","fun Peer(bytesSent: BigInteger?, packetsSent: BigInteger?, bytesReceived: BigInteger?, packetsReceived: BigInteger?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, availableOutgoingBitrate: Double?, availableIncomingBitrate: Double?, timestampUs: Double?)","live.hms.video.connection.degredation.Peer.Peer"]},{"name":"fun PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","description":"live.hms.video.sdk.models.PeerListIterator.PeerListIterator","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/-peer-list-iterator.html","searchKeys":["PeerListIterator","fun PeerListIterator(peerListIteratorOptions: PeerListIteratorOptions?)","live.hms.video.sdk.models.PeerListIterator.PeerListIterator"]},{"name":"fun PeerListIteratorOptions(byGroupName: String? = null, byRoleName: String? = null, byPeerIds: ArrayList? = null, limit: Int = 10)","description":"live.hms.video.sdk.models.PeerListIteratorOptions.PeerListIteratorOptions","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/-peer-list-iterator-options.html","searchKeys":["PeerListIteratorOptions","fun PeerListIteratorOptions(byGroupName: String? = null, byRoleName: String? = null, byPeerIds: ArrayList? = null, limit: Int = 10)","live.hms.video.sdk.models.PeerListIteratorOptions.PeerListIteratorOptions"]},{"name":"fun PermissionsParams(endRoom: Boolean = false, removeOthers: Boolean = false, unmute: Boolean = false, mute: Boolean = false, changeRole: Boolean = false, browserRecording: Boolean = false, rtmpStreaming: Boolean = false, hlsStreaming: Boolean = false, pollRead: Boolean = false, pollWrite: Boolean = false, whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","description":"live.hms.video.sdk.models.role.PermissionsParams.PermissionsParams","location":"lib/live.hms.video.sdk.models.role/-permissions-params/-permissions-params.html","searchKeys":["PermissionsParams","fun PermissionsParams(endRoom: Boolean = false, removeOthers: Boolean = false, unmute: Boolean = false, mute: Boolean = false, changeRole: Boolean = false, browserRecording: Boolean = false, rtmpStreaming: Boolean = false, hlsStreaming: Boolean = false, pollRead: Boolean = false, pollWrite: Boolean = false, whiteboard: HMSWhiteBoardPermission = HMSWhiteBoardPermission(\n admin = false,\n read = false,\n write = false\n ))","live.hms.video.sdk.models.role.PermissionsParams.PermissionsParams"]},{"name":"fun PollAnswerItem(questionIndex: Int, correct: Boolean, error: HMSException?)","description":"live.hms.video.polls.models.answer.PollAnswerItem.PollAnswerItem","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/-poll-answer-item.html","searchKeys":["PollAnswerItem","fun PollAnswerItem(questionIndex: Int, correct: Boolean, error: HMSException?)","live.hms.video.polls.models.answer.PollAnswerItem.PollAnswerItem"]},{"name":"fun PollAnswerResponse(pollId: String, result: List, version: String)","description":"live.hms.video.polls.models.answer.PollAnswerResponse.PollAnswerResponse","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/-poll-answer-response.html","searchKeys":["PollAnswerResponse","fun PollAnswerResponse(pollId: String, result: List, version: String)","live.hms.video.polls.models.answer.PollAnswerResponse.PollAnswerResponse"]},{"name":"fun PollCreateResponse(pollId: String, version: String)","description":"live.hms.video.polls.network.PollCreateResponse.PollCreateResponse","location":"lib/live.hms.video.polls.network/-poll-create-response/-poll-create-response.html","searchKeys":["PollCreateResponse","fun PollCreateResponse(pollId: String, version: String)","live.hms.video.polls.network.PollCreateResponse.PollCreateResponse"]},{"name":"fun PollGetResponsesReply(pollId: String, version: String, isLast: Boolean, responses: List)","description":"live.hms.video.polls.network.PollGetResponsesReply.PollGetResponsesReply","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/-poll-get-responses-reply.html","searchKeys":["PollGetResponsesReply","fun PollGetResponsesReply(pollId: String, version: String, isLast: Boolean, responses: List)","live.hms.video.polls.network.PollGetResponsesReply.PollGetResponsesReply"]},{"name":"fun PollLeaderboardResponse(entries: List?, summary: HMSPollLeaderboardSummary?, hasNext: Boolean?)","description":"live.hms.video.polls.network.PollLeaderboardResponse.PollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/-poll-leaderboard-response.html","searchKeys":["PollLeaderboardResponse","fun PollLeaderboardResponse(entries: List?, summary: HMSPollLeaderboardSummary?, hasNext: Boolean?)","live.hms.video.polls.network.PollLeaderboardResponse.PollLeaderboardResponse"]},{"name":"fun PollQuestionGetResponse(last: Boolean, pollId: String, version: String, questions: List)","description":"live.hms.video.polls.network.PollQuestionGetResponse.PollQuestionGetResponse","location":"lib/live.hms.video.polls.network/-poll-question-get-response/-poll-question-get-response.html","searchKeys":["PollQuestionGetResponse","fun PollQuestionGetResponse(last: Boolean, pollId: String, version: String, questions: List)","live.hms.video.polls.network.PollQuestionGetResponse.PollQuestionGetResponse"]},{"name":"fun PollResultsDisplay(totalResponses: Long? = null, votingUsers: Long? = null, totalDistinctUsers: Long? = null, questions: List)","description":"live.hms.video.polls.network.PollResultsDisplay.PollResultsDisplay","location":"lib/live.hms.video.polls.network/-poll-results-display/-poll-results-display.html","searchKeys":["PollResultsDisplay","fun PollResultsDisplay(totalResponses: Long? = null, votingUsers: Long? = null, totalDistinctUsers: Long? = null, questions: List)","live.hms.video.polls.network.PollResultsDisplay.PollResultsDisplay"]},{"name":"fun PollResultsItems(questionIndex: Long, correct: Long, type: HMSPollQuestionType, skipped: Long, total: Long, error: HMSException?)","description":"live.hms.video.polls.network.PollResultsItems.PollResultsItems","location":"lib/live.hms.video.polls.network/-poll-results-items/-poll-results-items.html","searchKeys":["PollResultsItems","fun PollResultsItems(questionIndex: Long, correct: Long, type: HMSPollQuestionType, skipped: Long, total: Long, error: HMSException?)","live.hms.video.polls.network.PollResultsItems.PollResultsItems"]},{"name":"fun PollResultsResponse(pollId: String, totalResponses: Long, votingUsers: Long, totalDistinctUsers: Long, question: List)","description":"live.hms.video.polls.network.PollResultsResponse.PollResultsResponse","location":"lib/live.hms.video.polls.network/-poll-results-response/-poll-results-response.html","searchKeys":["PollResultsResponse","fun PollResultsResponse(pollId: String, totalResponses: Long, votingUsers: Long, totalDistinctUsers: Long, question: List)","live.hms.video.polls.network.PollResultsResponse.PollResultsResponse"]},{"name":"fun PollStartRequest(pollId: String, version: String = \"1.0\")","description":"live.hms.video.polls.network.PollStartRequest.PollStartRequest","location":"lib/live.hms.video.polls.network/-poll-start-request/-poll-start-request.html","searchKeys":["PollStartRequest","fun PollStartRequest(pollId: String, version: String = \"1.0\")","live.hms.video.polls.network.PollStartRequest.PollStartRequest"]},{"name":"fun PollStatsQuestions(index: Int, questionType: HMSPollQuestionType, options: List?, correct: Long?, skipped: Long, attemptedTimes: Int)","description":"live.hms.video.polls.models.PollStatsQuestions.PollStatsQuestions","location":"lib/live.hms.video.polls.models/-poll-stats-questions/-poll-stats-questions.html","searchKeys":["PollStatsQuestions","fun PollStatsQuestions(index: Int, questionType: HMSPollQuestionType, options: List?, correct: Long?, skipped: Long, attemptedTimes: Int)","live.hms.video.polls.models.PollStatsQuestions.PollStatsQuestions"]},{"name":"fun PreferLayer(trackId: String, layer: String)","description":"live.hms.video.media.streams.models.PreferLayer.PreferLayer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/-prefer-layer.html","searchKeys":["PreferLayer","fun PreferLayer(trackId: String, layer: String)","live.hms.video.media.streams.models.PreferLayer.PreferLayer"]},{"name":"fun PreferLayerAudio(trackId: String, isSubscribed: Boolean)","description":"live.hms.video.media.streams.models.PreferLayerAudio.PreferLayerAudio","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/-prefer-layer-audio.html","searchKeys":["PreferLayerAudio","fun PreferLayerAudio(trackId: String, isSubscribed: Boolean)","live.hms.video.media.streams.models.PreferLayerAudio.PreferLayerAudio"]},{"name":"fun PreferLayerResponseInfo(trackId: String)","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo.PreferLayerResponseInfo","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/-prefer-layer-response-info.html","searchKeys":["PreferLayerResponseInfo","fun PreferLayerResponseInfo(trackId: String)","live.hms.video.media.streams.models.PreferLayerResponseInfo.PreferLayerResponseInfo"]},{"name":"fun PreferStateResponse(info: PreferLayerResponseInfo)","description":"live.hms.video.media.streams.models.PreferStateResponse.PreferStateResponse","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/-prefer-state-response.html","searchKeys":["PreferStateResponse","fun PreferStateResponse(info: PreferLayerResponseInfo)","live.hms.video.media.streams.models.PreferStateResponse.PreferStateResponse"]},{"name":"fun PreferStateResponseError(code: Int?, message: String?, data: String?)","description":"live.hms.video.media.streams.models.PreferStateResponseError.PreferStateResponseError","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/-prefer-state-response-error.html","searchKeys":["PreferStateResponseError","fun PreferStateResponseError(code: Int?, message: String?, data: String?)","live.hms.video.media.streams.models.PreferStateResponseError.PreferStateResponseError"]},{"name":"fun Preview(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, skipPreview: Boolean?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-preview.html","searchKeys":["Preview","fun Preview(default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?, skipPreview: Boolean?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Preview"]},{"name":"fun PreviewHeader(subTitle: String?, title: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.PreviewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/-preview-header.html","searchKeys":["PreviewHeader","fun PreviewHeader(subTitle: String?, title: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.PreviewHeader"]},{"name":"fun PublishAnalyticPayload(sequenceNumber: Int, maxWindowSecond: Int, joined_at: Long, video: List = emptyList(), audio: List, batteryPercentage: Int)","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.PublishAnalyticPayload","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/-publish-analytic-payload.html","searchKeys":["PublishAnalyticPayload","fun PublishAnalyticPayload(sequenceNumber: Int, maxWindowSecond: Int, joined_at: Long, video: List = emptyList(), audio: List, batteryPercentage: Int)","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.PublishAnalyticPayload"]},{"name":"fun PublishAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String, source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.PublishAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-publish-audio-stats-sampler.html","searchKeys":["PublishAudioStatsSampler","fun PublishAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String, source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.PublishAudioStatsSampler"]},{"name":"fun PublishConnection(bytesSent: BigInteger?, availableOutgoingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsSent: BigInteger?)","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.PublishConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-publish-connection.html","searchKeys":["PublishConnection","fun PublishConnection(bytesSent: BigInteger?, availableOutgoingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsSent: BigInteger?)","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.PublishConnection"]},{"name":"fun PublishConnection(bytesSent: Long = 0, availableOutgoingBitrates: MutableList = mutableListOf(), packetsSent: Long = 0, packetLoss: Long = 0)","description":"live.hms.video.sdk.PublishConnection.PublishConnection","location":"lib/live.hms.video.sdk/-publish-connection/-publish-connection.html","searchKeys":["PublishConnection","fun PublishConnection(bytesSent: Long = 0, availableOutgoingBitrates: MutableList = mutableListOf(), packetsSent: Long = 0, packetLoss: Long = 0)","live.hms.video.sdk.PublishConnection.PublishConnection"]},{"name":"fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList = arrayListOf(), simulcast: Simulcast?)","description":"live.hms.video.sdk.models.role.PublishParams.PublishParams","location":"lib/live.hms.video.sdk.models.role/-publish-params/-publish-params.html","searchKeys":["PublishParams","fun PublishParams(audio: AudioParams?, video: VideoParams?, screen: VideoParams?, allowed: ArrayList = arrayListOf(), simulcast: Simulcast?)","live.hms.video.sdk.models.role.PublishParams.PublishParams"]},{"name":"fun PublishVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, rid: String?, ssrc: String, source: String = \"regular\")","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.PublishVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-publish-video-stats-sampler.html","searchKeys":["PublishVideoStatsSampler","fun PublishVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, rid: String?, ssrc: String, source: String = \"regular\")","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.PublishVideoStatsSampler"]},{"name":"fun QualityLimitation(bandwidthMs: Float, cpuMs: Float)","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.QualityLimitation","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/-quality-limitation.html","searchKeys":["QualityLimitation","fun QualityLimitation(bandwidthMs: Float, cpuMs: Float)","live.hms.video.connection.stats.clientside.model.QualityLimitation.QualityLimitation"]},{"name":"fun QualityLimitationReasons(stringReason: String? = null, bandWidth: Double? = null, cpu: Double? = null, none: Double? = null, other: Double? = null, qualityLimitationResolutionChanges: Long? = null)","description":"live.hms.video.connection.degredation.QualityLimitationReasons.QualityLimitationReasons","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/-quality-limitation-reasons.html","searchKeys":["QualityLimitationReasons","fun QualityLimitationReasons(stringReason: String? = null, bandWidth: Double? = null, cpu: Double? = null, none: Double? = null, other: Double? = null, qualityLimitationResolutionChanges: Long? = null)","live.hms.video.connection.degredation.QualityLimitationReasons.QualityLimitationReasons"]},{"name":"fun QuestionContainer(questions: List? = null, error: Throwable? = null)","description":"live.hms.video.polls.network.QuestionContainer.QuestionContainer","location":"lib/live.hms.video.polls.network/-question-container/-question-container.html","searchKeys":["QuestionContainer","fun QuestionContainer(questions: List? = null, error: Throwable? = null)","live.hms.video.polls.network.QuestionContainer.QuestionContainer"]},{"name":"fun RangeLimits(low: Long, high: Long)","description":"live.hms.video.signal.init.RangeLimits.RangeLimits","location":"lib/live.hms.video.signal.init/-range-limits/-range-limits.html","searchKeys":["RangeLimits","fun RangeLimits(low: Long, high: Long)","live.hms.video.signal.init.RangeLimits.RangeLimits"]},{"name":"fun RealTimeControls(canDisableChat: Boolean, canBlockUser: Boolean, canHideMessage: Boolean)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.RealTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/-real-time-controls.html","searchKeys":["RealTimeControls","fun RealTimeControls(canDisableChat: Boolean, canBlockUser: Boolean, canHideMessage: Boolean)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.RealTimeControls"]},{"name":"fun Recording(sfu: Sfu?, browser: Browser?, hls: Hls?)","description":"live.hms.video.sdk.peerlist.models.Recording.Recording","location":"lib/live.hms.video.sdk.peerlist.models/-recording/-recording.html","searchKeys":["Recording","fun Recording(sfu: Sfu?, browser: Browser?, hls: Hls?)","live.hms.video.sdk.peerlist.models.Recording.Recording"]},{"name":"fun RemoteTrack()","description":"live.hms.video.connection.degredation.RemoteTrack.RemoteTrack","location":"lib/live.hms.video.connection.degredation/-remote-track/-remote-track.html","searchKeys":["RemoteTrack","fun RemoteTrack()","live.hms.video.connection.degredation.RemoteTrack.RemoteTrack"]},{"name":"fun Result(mode: TranscriptionsMode?)","description":"live.hms.video.sdk.models.Result.Result","location":"lib/live.hms.video.sdk.models/-result/-result.html","searchKeys":["Result","fun Result(mode: TranscriptionsMode?)","live.hms.video.sdk.models.Result.Result"]},{"name":"fun RpcRequestWrapper(method: String, params: HMSDataChannelRequestParams, id: String = IdHelper.makeCallSignalId(), jsonRpc: String = \"2.0\")","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.RpcRequestWrapper","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/-rpc-request-wrapper.html","searchKeys":["RpcRequestWrapper","fun RpcRequestWrapper(method: String, params: HMSDataChannelRequestParams, id: String = IdHelper.makeCallSignalId(), jsonRpc: String = \"2.0\")","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.RpcRequestWrapper"]},{"name":"fun SafeVariable()","description":"live.hms.video.factories.SafeVariable.SafeVariable","location":"lib/live.hms.video.factories/-safe-variable/-safe-variable.html","searchKeys":["SafeVariable","fun SafeVariable()","live.hms.video.factories.SafeVariable.SafeVariable"]},{"name":"fun Screens(conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-screens.html","searchKeys":["Screens","fun Screens(conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?, leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?, preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Screens"]},{"name":"fun ServerConfiguration(enabledFlags: List?, networkHealth: NetworkHealth?, publishStats: Stats?, subscribeStats: Stats?, vb: VB?)","description":"live.hms.video.signal.init.ServerConfiguration.ServerConfiguration","location":"lib/live.hms.video.signal.init/-server-configuration/-server-configuration.html","searchKeys":["ServerConfiguration","fun ServerConfiguration(enabledFlags: List?, networkHealth: NetworkHealth?, publishStats: Stats?, subscribeStats: Stats?, vb: VB?)","live.hms.video.signal.init.ServerConfiguration.ServerConfiguration"]},{"name":"fun SetQuestionsResponse(pollId: String, totalQuestions: Int, version: String)","description":"live.hms.video.polls.network.SetQuestionsResponse.SetQuestionsResponse","location":"lib/live.hms.video.polls.network/-set-questions-response/-set-questions-response.html","searchKeys":["SetQuestionsResponse","fun SetQuestionsResponse(pollId: String, totalQuestions: Int, version: String)","live.hms.video.polls.network.SetQuestionsResponse.SetQuestionsResponse"]},{"name":"fun Sfu(enabled: Boolean, startedAt: Long?, initialisedAt: Long?, updatedAt: Long?, state: BeamRecordingStates?)","description":"live.hms.video.sdk.peerlist.models.Sfu.Sfu","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/-sfu.html","searchKeys":["Sfu","fun Sfu(enabled: Boolean, startedAt: Long?, initialisedAt: Long?, updatedAt: Long?, state: BeamRecordingStates?)","live.hms.video.sdk.peerlist.models.Sfu.Sfu"]},{"name":"fun ShortCodeInput(token: String, userId: String?)","description":"live.hms.video.signal.init.ShortCodeInput.ShortCodeInput","location":"lib/live.hms.video.signal.init/-short-code-input/-short-code-input.html","searchKeys":["ShortCodeInput","fun ShortCodeInput(token: String, userId: String?)","live.hms.video.signal.init.ShortCodeInput.ShortCodeInput"]},{"name":"fun SignallingReport()","description":"live.hms.video.diagnostics.models.SignallingReport.SignallingReport","location":"lib/live.hms.video.diagnostics.models/-signalling-report/-signalling-report.html","searchKeys":["SignallingReport","fun SignallingReport()","live.hms.video.diagnostics.models.SignallingReport.SignallingReport"]},{"name":"fun SignatureChecker(applicationContext: Context)","description":"live.hms.video.sdk.SignatureChecker.SignatureChecker","location":"lib/live.hms.video.sdk/-signature-checker/-signature-checker.html","searchKeys":["SignatureChecker","fun SignatureChecker(applicationContext: Context)","live.hms.video.sdk.SignatureChecker.SignatureChecker"]},{"name":"fun Simulcast(video: VideoSimulcastLayersParams?, screen: VideoSimulcastLayersParams?)","description":"live.hms.video.sdk.models.role.Simulcast.Simulcast","location":"lib/live.hms.video.sdk.models.role/-simulcast/-simulcast.html","searchKeys":["Simulcast","fun Simulcast(video: VideoSimulcastLayersParams?, screen: VideoSimulcastLayersParams?)","live.hms.video.sdk.models.role.Simulcast.Simulcast"]},{"name":"fun SingleResponse(peer: HMSPollResponsePeerInfo, finalAnswer: Boolean, response: HMSPollQuestionResponse)","description":"live.hms.video.polls.models.network.SingleResponse.SingleResponse","location":"lib/live.hms.video.polls.models.network/-single-response/-single-response.html","searchKeys":["SingleResponse","fun SingleResponse(peer: HMSPollResponsePeerInfo, finalAnswer: Boolean, response: HMSPollQuestionResponse)","live.hms.video.polls.models.network.SingleResponse.SingleResponse"]},{"name":"fun Size(width: Int, height: Int)","description":"live.hms.video.connection.stats.clientside.model.Size.Size","location":"lib/live.hms.video.connection.stats.clientside.model/-size/-size.html","searchKeys":["Size","fun Size(width: Int, height: Int)","live.hms.video.connection.stats.clientside.model.Size.Size"]},{"name":"fun SpeedTest()","description":"live.hms.video.sdk.SpeedTest.SpeedTest","location":"lib/live.hms.video.sdk/-speed-test/-speed-test.html","searchKeys":["SpeedTest","fun SpeedTest()","live.hms.video.sdk.SpeedTest.SpeedTest"]},{"name":"fun Start(hmsWhiteboard: HMSWhiteboard)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.Start","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/-start.html","searchKeys":["Start","fun Start(hmsWhiteboard: HMSWhiteboard)","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.Start"]},{"name":"fun Stats(maxSampleWindowSize: Float?, maxSamplePushInterval: Float?)","description":"live.hms.video.signal.init.Stats.Stats","location":"lib/live.hms.video.signal.init/-stats/-stats.html","searchKeys":["Stats","fun Stats(maxSampleWindowSize: Float?, maxSamplePushInterval: Float?)","live.hms.video.signal.init.Stats.Stats"]},{"name":"fun StatsBundle(packetLoss: Long, allStats: Map, totalPackets: Long, packetLossTracks: MutableMap)","description":"live.hms.video.connection.degredation.StatsBundle.StatsBundle","location":"lib/live.hms.video.connection.degredation/-stats-bundle/-stats-bundle.html","searchKeys":["StatsBundle","fun StatsBundle(packetLoss: Long, allStats: Map, totalPackets: Long, packetLossTracks: MutableMap)","live.hms.video.connection.degredation.StatsBundle.StatsBundle"]},{"name":"fun Stop(hmsWhiteboard: HMSWhiteboard)","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.Stop","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/-stop.html","searchKeys":["Stop","fun Stop(hmsWhiteboard: HMSWhiteboard)","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.Stop"]},{"name":"fun SubscribeAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SubscribeAudioStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-subscribe-audio-stats-sampler.html","searchKeys":["SubscribeAudioStatsSampler","fun SubscribeAudioStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SubscribeAudioStatsSampler"]},{"name":"fun SubscribeConnection(bytesReceived: BigInteger?, availableIncomingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsReceived: BigInteger?)","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.SubscribeConnection","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-subscribe-connection.html","searchKeys":["SubscribeConnection","fun SubscribeConnection(bytesReceived: BigInteger?, availableIncomingBitrate: Double?, totalRoundTripTime: Double?, currentRoundTripTime: Double?, packetsReceived: BigInteger?)","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.SubscribeConnection"]},{"name":"fun SubscribeConnection(bytesReceived: Long = 0, availableIncomingBitrates: MutableList = mutableListOf(), packetsReceived: Long = 0, packetLoss: Long = 0)","description":"live.hms.video.sdk.SubscribeConnection.SubscribeConnection","location":"lib/live.hms.video.sdk/-subscribe-connection/-subscribe-connection.html","searchKeys":["SubscribeConnection","fun SubscribeConnection(bytesReceived: Long = 0, availableIncomingBitrates: MutableList = mutableListOf(), packetsReceived: Long = 0, packetLoss: Long = 0)","live.hms.video.sdk.SubscribeConnection.SubscribeConnection"]},{"name":"fun SubscribeDegradationParams(packetLossThreshold: Long, degradeGracePeriodSeconds: Long, recoverGracePeriodSeconds: Long)","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.SubscribeDegradationParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/-subscribe-degradation-params.html","searchKeys":["SubscribeDegradationParams","fun SubscribeDegradationParams(packetLossThreshold: Long, degradeGracePeriodSeconds: Long, recoverGracePeriodSeconds: Long)","live.hms.video.sdk.models.role.SubscribeDegradationParams.SubscribeDegradationParams"]},{"name":"fun SubscribeParams(subscribeTo: ArrayList?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)","description":"live.hms.video.sdk.models.role.SubscribeParams.SubscribeParams","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/-subscribe-params.html","searchKeys":["SubscribeParams","fun SubscribeParams(subscribeTo: ArrayList?, maxSubsBitRate: Int, subscribeDegradationParam: SubscribeDegradationParams?)","live.hms.video.sdk.models.role.SubscribeParams.SubscribeParams"]},{"name":"fun SubscribeVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SubscribeVideoStatsSampler","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-subscribe-video-stats-sampler.html","searchKeys":["SubscribeVideoStatsSampler","fun SubscribeVideoStatsSampler(SAMPLE_DURATION: Double, trackId: String, ssrc: String)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SubscribeVideoStatsSampler"]},{"name":"fun TokenRequest(roomCode: String, userId: String? = null)","description":"live.hms.video.signal.init.TokenRequest.TokenRequest","location":"lib/live.hms.video.signal.init/-token-request/-token-request.html","searchKeys":["TokenRequest","fun TokenRequest(roomCode: String, userId: String? = null)","live.hms.video.signal.init.TokenRequest.TokenRequest"]},{"name":"fun TokenRequestOptions(endpoint: String?)","description":"live.hms.video.signal.init.TokenRequestOptions.TokenRequestOptions","location":"lib/live.hms.video.signal.init/-token-request-options/-token-request-options.html","searchKeys":["TokenRequestOptions","fun TokenRequestOptions(endpoint: String?)","live.hms.video.signal.init.TokenRequestOptions.TokenRequestOptions"]},{"name":"fun TokenResult(token: String?, expiresAt: String?)","description":"live.hms.video.signal.init.TokenResult.TokenResult","location":"lib/live.hms.video.signal.init/-token-result/-token-result.html","searchKeys":["TokenResult","fun TokenResult(token: String?, expiresAt: String?)","live.hms.video.signal.init.TokenResult.TokenResult"]},{"name":"fun TranscriptionStartResponse(result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStartResponse.TranscriptionStartResponse","location":"lib/live.hms.video.sdk.models/-transcription-start-response/-transcription-start-response.html","searchKeys":["TranscriptionStartResponse","fun TranscriptionStartResponse(result: Result?)","live.hms.video.sdk.models.TranscriptionStartResponse.TranscriptionStartResponse"]},{"name":"fun TranscriptionStopResponse(result: Result?)","description":"live.hms.video.sdk.models.TranscriptionStopResponse.TranscriptionStopResponse","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/-transcription-stop-response.html","searchKeys":["TranscriptionStopResponse","fun TranscriptionStopResponse(result: Result?)","live.hms.video.sdk.models.TranscriptionStopResponse.TranscriptionStopResponse"]},{"name":"fun Transcriptions()","description":"live.hms.video.sdk.models.Transcriptions.Transcriptions","location":"lib/live.hms.video.sdk.models/-transcriptions/-transcriptions.html","searchKeys":["Transcriptions","fun Transcriptions()","live.hms.video.sdk.models.Transcriptions.Transcriptions"]},{"name":"fun TypeConverter()","description":"live.hms.video.database.converters.TypeConverter.TypeConverter","location":"lib/live.hms.video.database.converters/-type-converter/-type-converter.html","searchKeys":["TypeConverter","fun TypeConverter()","live.hms.video.database.converters.TypeConverter.TypeConverter"]},{"name":"fun TypoGraphy(fontFamily: String?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.TypoGraphy","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/-typo-graphy.html","searchKeys":["TypoGraphy","fun TypoGraphy(fontFamily: String?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.TypoGraphy"]},{"name":"fun VB(effectsKey: String?)","description":"live.hms.video.signal.init.VB.VB","location":"lib/live.hms.video.signal.init/-v-b/-v-b.html","searchKeys":["VB","fun VB(effectsKey: String?)","live.hms.video.signal.init.VB.VB"]},{"name":"fun VideoAnalytics(rid: String?, videoSamples: List, trackId: String, ssrc: String, source: String)","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.VideoAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/-video-analytics.html","searchKeys":["VideoAnalytics","fun VideoAnalytics(rid: String?, videoSamples: List, trackId: String, ssrc: String, source: String)","live.hms.video.connection.stats.clientside.model.VideoAnalytics.VideoAnalytics"]},{"name":"fun VideoInputDeviceReport()","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport.VideoInputDeviceReport","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/-video-input-device-report.html","searchKeys":["VideoInputDeviceReport","fun VideoInputDeviceReport()","live.hms.video.diagnostics.models.VideoInputDeviceReport.VideoInputDeviceReport"]},{"name":"fun VideoParams(bitRate: Int, codec: HMSVideoCodec, frameRate: Int, width: Int, height: Int)","description":"live.hms.video.sdk.models.role.VideoParams.VideoParams","location":"lib/live.hms.video.sdk.models.role/-video-params/-video-params.html","searchKeys":["VideoParams","fun VideoParams(bitRate: Int, codec: HMSVideoCodec, frameRate: Int, width: Int, height: Int)","live.hms.video.sdk.models.role.VideoParams.VideoParams"]},{"name":"fun VideoSamplesPublish(total_quality_limitation: QualityLimitation, avg_fps: Int, resolution: Size, timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long, totalPacketSendDelay: Double, packetsSent: Long)","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.VideoSamplesPublish","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/-video-samples-publish.html","searchKeys":["VideoSamplesPublish","fun VideoSamplesPublish(total_quality_limitation: QualityLimitation, avg_fps: Int, resolution: Size, timestamp: Long, avgRoundTripTimeMs: Int, avgJitterMs: Float, totalPacketsLost: Long, avgBitrateBps: Long, avgAvailableOutgoingBitrateBps: Long, totalPacketSendDelay: Double, packetsSent: Long)","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.VideoSamplesPublish"]},{"name":"fun VideoSamplesSubscribe(timestamp: Long, avg_frames_received_per_sec: Float, avg_frames_dropped_per_sec: Float, avg_frames_decoded_per_sec: Float, total_pli_count: Int, total_nack_count: Int, avg_av_sync_ms: Int, frame_width: Int, frame_height: Int, pause_count: Int, pause_duration_seconds: Float, freeze_count: Int, freeze_duration_seconds: Float, avg_jitter_buffer_delay: Float)","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.VideoSamplesSubscribe","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/-video-samples-subscribe.html","searchKeys":["VideoSamplesSubscribe","fun VideoSamplesSubscribe(timestamp: Long, avg_frames_received_per_sec: Float, avg_frames_dropped_per_sec: Float, avg_frames_decoded_per_sec: Float, total_pli_count: Int, total_nack_count: Int, avg_av_sync_ms: Int, frame_width: Int, frame_height: Int, pause_count: Int, pause_duration_seconds: Float, freeze_count: Int, freeze_duration_seconds: Float, avg_jitter_buffer_delay: Float)","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.VideoSamplesSubscribe"]},{"name":"fun VideoSimulcastLayersParams(layers: ArrayList?)","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams.VideoSimulcastLayersParams","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/-video-simulcast-layers-params.html","searchKeys":["VideoSimulcastLayersParams","fun VideoSimulcastLayersParams(layers: ArrayList?)","live.hms.video.sdk.models.role.VideoSimulcastLayersParams.VideoSimulcastLayersParams"]},{"name":"fun VideoTileLayout(grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.VideoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-video-tile-layout.html","searchKeys":["VideoTileLayout","fun VideoTileLayout(grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?)","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.VideoTileLayout"]},{"name":"fun WertcAudioUtils()","description":"live.hms.video.utils.WertcAudioUtils.WertcAudioUtils","location":"lib/live.hms.video.utils/-wertc-audio-utils/-wertc-audio-utils.html","searchKeys":["WertcAudioUtils","fun WertcAudioUtils()","live.hms.video.utils.WertcAudioUtils.WertcAudioUtils"]},{"name":"fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.YuvByteBuffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/-yuv-byte-buffer.html","searchKeys":["YuvByteBuffer","fun YuvByteBuffer(image: Image, dstBuffer: ByteBuffer? = null)","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.YuvByteBuffer"]},{"name":"fun YuvToRgbConverter(context: Context)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.YuvToRgbConverter","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/-yuv-to-rgb-converter.html","searchKeys":["YuvToRgbConverter","fun YuvToRgbConverter(context: Context)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.YuvToRgbConverter"]},{"name":"fun acceptChangeRole(request: HMSRoleChangeRequest, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.acceptChangeRole","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/accept-change-role.html","searchKeys":["acceptChangeRole","fun acceptChangeRole(request: HMSRoleChangeRequest, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.acceptChangeRole"]},{"name":"fun add(audioLevel: Double, audioConcealedSamples: Long, audioTotalSampleReceived: Number, audioConcealmentEvents: Number, fecPacketDiscarded: Number, fecPacketReceived: Number, totalSampleDuration: Float, totalPacketReceived: Long, totalPacketLost: Long, jitterBufferDelay: Double, jitterBufferEmittedCount: Number)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/add.html","searchKeys":["add","fun add(audioLevel: Double, audioConcealedSamples: Long, audioTotalSampleReceived: Number, audioConcealmentEvents: Number, fecPacketDiscarded: Number, fecPacketReceived: Number, totalSampleDuration: Float, totalPacketReceived: Long, totalPacketLost: Long, jitterBufferDelay: Double, jitterBufferEmittedCount: Number)","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.add"]},{"name":"fun add(availableOutgoingBitrate: Double, bitRate: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/add.html","searchKeys":["add","fun add(availableOutgoingBitrate: Double, bitRate: Double)","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add"]},{"name":"fun add(framesReceived: Int, framesDropped: Long, framesDecoded: Long, pliCount: Number, nackCount: Number, frameWidth: Number, frameHeight: Number, jitterBufferEmittedCount: Number, jitterBufferDelay: Double)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(framesReceived: Int, framesDropped: Long, framesDecoded: Long, pliCount: Number, nackCount: Number, frameWidth: Number, frameHeight: Number, jitterBufferEmittedCount: Number, jitterBufferDelay: Double)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/add.html","searchKeys":["add","fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.add"]},{"name":"fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/add.html","searchKeys":["add","fun add(jitter: Double, packetLoss: Int, roundTripTime: Double)","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add"]},{"name":"fun add(pauseCount: Long, freezeCount: Long, totalPausesDuration: Double, totalFreezesDuration: Double)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(pauseCount: Long, freezeCount: Long, totalPausesDuration: Double, totalFreezesDuration: Double)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(response: HMSPollResponseBuilder, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.add","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/add.html","searchKeys":["add","fun add(response: HMSPollResponseBuilder, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.add"]},{"name":"fun add(videoEstimatedPlayoutTimestamp: Double, peer: HMSPeer?, getAudioStats: (String) -> RTCStats?)","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/add.html","searchKeys":["add","fun add(videoEstimatedPlayoutTimestamp: Double, peer: HMSPeer?, getAudioStats: (String) -> RTCStats?)","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.add"]},{"name":"fun add(width: Int?, height: Int?, qualityReasons: QualityLimitationReasons, availableOutgoingBitrate: Double, fps: Int, trackId: String, bitRate: Double, totalPacketSendDelay: Double, packetsSent: Long, timestamp: Double)","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/add.html","searchKeys":["add","fun add(width: Int?, height: Int?, qualityReasons: QualityLimitationReasons, availableOutgoingBitrate: Double, fps: Int, trackId: String, bitRate: Double, totalPacketSendDelay: Double, packetsSent: Long, timestamp: Double)","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.add"]},{"name":"fun addAudioObserver(observer: HMSAudioListener)","description":"live.hms.video.sdk.HMSSDK.addAudioObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-audio-observer.html","searchKeys":["addAudioObserver","fun addAudioObserver(observer: HMSAudioListener)","live.hms.video.sdk.HMSSDK.addAudioObserver"]},{"name":"fun addKeyChangeListener(forKeys: List, keyChangeListener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sessionstore.HmsSessionStore.addKeyChangeListener","location":"lib/live.hms.video.sessionstore/-hms-session-store/add-key-change-listener.html","searchKeys":["addKeyChangeListener","fun addKeyChangeListener(forKeys: List, keyChangeListener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sessionstore.HmsSessionStore.addKeyChangeListener"]},{"name":"fun addLongAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addLongAnswerQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-long-answer-question.html","searchKeys":["addLongAnswerQuestion","fun addLongAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addLongAnswerQuestion"]},{"name":"fun addOption(option: String): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.addOption","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/add-option.html","searchKeys":["addOption","fun addOption(option: String): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.addOption"]},{"name":"fun addPlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener, pluginFrameRate: Int = 15)","description":"live.hms.video.sdk.HMSSDK.addPlugin","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-plugin.html","searchKeys":["addPlugin","fun addPlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener, pluginFrameRate: Int = 15)","live.hms.video.sdk.HMSSDK.addPlugin"]},{"name":"fun addQuestion(withBuilder: HMSPollQuestionBuilder): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-question.html","searchKeys":["addQuestion","fun addQuestion(withBuilder: HMSPollQuestionBuilder): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addQuestion"]},{"name":"fun addQuizOption(option: String, isCorrect: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.addQuizOption","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/add-quiz-option.html","searchKeys":["addQuizOption","fun addQuizOption(option: String, isCorrect: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.addQuizOption"]},{"name":"fun addResponse(forOpenQuestion: HMSPollQuestion, text: String, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forOpenQuestion: HMSPollQuestion, text: String, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addResponse(forQuestion: HMSPollQuestion, option: HMSPollQuestionOption, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forQuestion: HMSPollQuestion, option: HMSPollQuestionOption, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addResponse(forQuestion: HMSPollQuestion, options: List, durationMillis: Long? = null): HMSPollResponseBuilder","description":"live.hms.video.polls.HMSPollResponseBuilder.addResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/add-response.html","searchKeys":["addResponse","fun addResponse(forQuestion: HMSPollQuestion, options: List, durationMillis: Long? = null): HMSPollResponseBuilder","live.hms.video.polls.HMSPollResponseBuilder.addResponse"]},{"name":"fun addRtcStatsObserver(observer: HMSStatsObserver)","description":"live.hms.video.sdk.HMSSDK.addRtcStatsObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/add-rtc-stats-observer.html","searchKeys":["addRtcStatsObserver","fun addRtcStatsObserver(observer: HMSStatsObserver)","live.hms.video.sdk.HMSSDK.addRtcStatsObserver"]},{"name":"fun addShortAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.addShortAnswerQuestion","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/add-short-answer-question.html","searchKeys":["addShortAnswerQuestion","fun addShortAnswerQuestion(withTitle: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.addShortAnswerQuestion"]},{"name":"fun addSinkInternal(sink: VideoSink, selectedLayer: HMSLayer)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.addSinkInternal","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/add-sink-internal.html","searchKeys":["addSinkInternal","fun addSinkInternal(sink: VideoSink, selectedLayer: HMSLayer)","live.hms.video.media.tracks.HMSRemoteVideoTrack.addSinkInternal"]},{"name":"fun audio(audio: HMSAudioTrackSettings?): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.audio","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/audio.html","searchKeys":["audio","fun audio(audio: HMSAudioTrackSettings?): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.audio"]},{"name":"fun build(): Bitmap","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.build","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/build.html","searchKeys":["build","fun build(): Bitmap","live.hms.video.media.capturers.camera.utils.BitMatrix.build"]},{"name":"fun build(): HMSAudioTrackSettings","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSAudioTrackSettings","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.build"]},{"name":"fun build(): HMSPollBuilder","description":"live.hms.video.polls.HMSPollBuilder.Builder.build","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/build.html","searchKeys":["build","fun build(): HMSPollBuilder","live.hms.video.polls.HMSPollBuilder.Builder.build"]},{"name":"fun build(): HMSPollQuestionBuilder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.build","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/build.html","searchKeys":["build","fun build(): HMSPollQuestionBuilder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.build"]},{"name":"fun build(): HMSSDK","description":"live.hms.video.sdk.HMSSDK.Builder.build","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/build.html","searchKeys":["build","fun build(): HMSSDK","live.hms.video.sdk.HMSSDK.Builder.build"]},{"name":"fun build(): HMSSimulcastSettings","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/build.html","searchKeys":["build","fun build(): HMSSimulcastSettings","live.hms.video.media.settings.HMSSimulcastSettings.Builder.build"]},{"name":"fun build(): HMSTrackSettings","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSTrackSettings","live.hms.video.media.settings.HMSTrackSettings.Builder.build"]},{"name":"fun build(): HMSVideoTrackSettings","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.build","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/build.html","searchKeys":["build","fun build(): HMSVideoTrackSettings","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.build"]},{"name":"fun builder(): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.builder","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/builder.html","searchKeys":["builder","fun builder(): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.builder"]},{"name":"fun builder(): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.builder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/builder.html","searchKeys":["builder","fun builder(): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.builder"]},{"name":"fun cameraFacing(facing: HMSVideoTrackSettings.CameraFacing): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.cameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/camera-facing.html","searchKeys":["cameraFacing","fun cameraFacing(facing: HMSVideoTrackSettings.CameraFacing): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.cameraFacing"]},{"name":"fun cancelPreview()","description":"live.hms.video.sdk.HMSSDK.cancelPreview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/cancel-preview.html","searchKeys":["cancelPreview","fun cancelPreview()","live.hms.video.sdk.HMSSDK.cancelPreview"]},{"name":"fun captureImageAtMaxPublishResolution(videoFrameListener: HmsVideoFrameListener)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.captureImageAtMaxPublishResolution","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/capture-image-at-max-publish-resolution.html","searchKeys":["captureImageAtMaxPublishResolution","fun captureImageAtMaxPublishResolution(videoFrameListener: HmsVideoFrameListener)","live.hms.video.media.tracks.HMSLocalVideoTrack.captureImageAtMaxPublishResolution"]},{"name":"fun captureImageAtMaxResolution(onImageCapture: HmsTypedActionResultListener)","description":"live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxResolution","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-resolution.html","searchKeys":["captureImageAtMaxResolution","fun captureImageAtMaxResolution(onImageCapture: HmsTypedActionResultListener)","live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxResolution"]},{"name":"fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)","description":"live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxSupportedResolution","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-image-at-max-supported-resolution.html","searchKeys":["captureImageAtMaxSupportedResolution","fun captureImageAtMaxSupportedResolution(savePath: File, callback: (isSuccess: Boolean) -> Unit)","live.hms.video.media.capturers.camera.CameraControl.captureImageAtMaxSupportedResolution"]},{"name":"fun changeInputFps(fps: Int)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.changeInputFps","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/change-input-fps.html","searchKeys":["changeInputFps","fun changeInputFps(fps: Int)","live.hms.video.media.tracks.HMSLocalVideoTrack.changeInputFps"]},{"name":"fun changeMetadata(metadata: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeMetadata","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-metadata.html","searchKeys":["changeMetadata","fun changeMetadata(metadata: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeMetadata"]},{"name":"fun changeName(name: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeName","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-name.html","searchKeys":["changeName","fun changeName(name: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeName"]},{"name":"fun changeRole(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRole","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role.html","searchKeys":["changeRole","fun changeRole(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRole"]},{"name":"fun changeRoleOfPeer(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRoleOfPeer","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role-of-peer.html","searchKeys":["changeRoleOfPeer","fun changeRoleOfPeer(forPeer: HMSPeer, toRole: HMSRole, force: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRoleOfPeer"]},{"name":"fun changeRoleOfPeersWithRoles(ofRoles: List, toRole: HMSRole, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeRoleOfPeersWithRoles","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-role-of-peers-with-roles.html","searchKeys":["changeRoleOfPeersWithRoles","fun changeRoleOfPeersWithRoles(ofRoles: List, toRole: HMSRole, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeRoleOfPeersWithRoles"]},{"name":"fun changeTrackState(forRemoteTrack: HMSTrack, mute: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeTrackState","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-track-state.html","searchKeys":["changeTrackState","fun changeTrackState(forRemoteTrack: HMSTrack, mute: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeTrackState"]},{"name":"fun changeTrackState(mute: Boolean, type: HMSTrackType?, source: String?, roles: List?, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.changeTrackState","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/change-track-state.html","searchKeys":["changeTrackState","fun changeTrackState(mute: Boolean, type: HMSTrackType?, source: String?, roles: List?, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.changeTrackState"]},{"name":"fun checkDirSizeAndRemove(context: Context)","description":"live.hms.video.utils.LogUtils.checkDirSizeAndRemove","location":"lib/live.hms.video.utils/-log-utils/check-dir-size-and-remove.html","searchKeys":["checkDirSizeAndRemove","fun checkDirSizeAndRemove(context: Context)","live.hms.video.utils.LogUtils.checkDirSizeAndRemove"]},{"name":"fun clearCurrentSampledStats()","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.clearCurrentSampledStats","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/clear-current-sampled-stats.html","searchKeys":["clearCurrentSampledStats","fun clearCurrentSampledStats()","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.clearCurrentSampledStats"]},{"name":"fun clearCurrentSampledStats()","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.clearCurrentSampledStats","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/clear-current-sampled-stats.html","searchKeys":["clearCurrentSampledStats","fun clearCurrentSampledStats()","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.clearCurrentSampledStats"]},{"name":"fun closeLogging()","description":"live.hms.video.utils.LogUtils.closeLogging","location":"lib/live.hms.video.utils/-log-utils/close-logging.html","searchKeys":["closeLogging","fun closeLogging()","live.hms.video.utils.LogUtils.closeLogging"]},{"name":"fun codec(codec: HMSAudioCodec): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.codec","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/codec.html","searchKeys":["codec","fun codec(codec: HMSAudioCodec): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.codec"]},{"name":"fun codec(codec: HMSVideoCodec): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.codec","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/codec.html","searchKeys":["codec","fun codec(codec: HMSVideoCodec): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.codec"]},{"name":"fun correctOrientation(bitmap: Bitmap?, orientation: Int?): Bitmap?","description":"live.hms.video.media.capturers.camera.utils.OrientationTools.correctOrientation","location":"lib/live.hms.video.media.capturers.camera.utils/-orientation-tools/correct-orientation.html","searchKeys":["correctOrientation","fun correctOrientation(bitmap: Bitmap?, orientation: Int?): Bitmap?","live.hms.video.media.capturers.camera.utils.OrientationTools.correctOrientation"]},{"name":"fun d(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.d","location":"lib/live.hms.video.utils/-h-m-s-logger/d.html","searchKeys":["d","fun d(tag: String, message: String)","live.hms.video.utils.HMSLogger.d"]},{"name":"fun disableAutoResize(disableAutoResize: Boolean): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.disableAutoResize","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/disable-auto-resize.html","searchKeys":["disableAutoResize","fun disableAutoResize(disableAutoResize: Boolean): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.disableAutoResize"]},{"name":"fun e(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.e","location":"lib/live.hms.video.utils/-h-m-s-logger/e.html","searchKeys":["e","fun e(tag: String, message: String)","live.hms.video.utils.HMSLogger.e"]},{"name":"fun e(tag: String, message: String, tr: Throwable)","description":"live.hms.video.utils.HMSLogger.e","location":"lib/live.hms.video.utils/-h-m-s-logger/e.html","searchKeys":["e","fun e(tag: String, message: String, tr: Throwable)","live.hms.video.utils.HMSLogger.e"]},{"name":"fun enableAutomaticGainControl(enableAutomaticGainControl: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableAutomaticGainControl","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-automatic-gain-control.html","searchKeys":["enableAutomaticGainControl","fun enableAutomaticGainControl(enableAutomaticGainControl: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableAutomaticGainControl"]},{"name":"fun enableEchoCancellation(enableEchoCancellation: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableEchoCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-echo-cancellation.html","searchKeys":["enableEchoCancellation","fun enableEchoCancellation(enableEchoCancellation: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableEchoCancellation"]},{"name":"fun enableIceGatheringOnAnyAddressPorts(enable: Boolean)","description":"live.hms.video.sdk.HMSSDK.Builder.enableIceGatheringOnAnyAddressPorts","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/enable-ice-gathering-on-any-address-ports.html","searchKeys":["enableIceGatheringOnAnyAddressPorts","fun enableIceGatheringOnAnyAddressPorts(enable: Boolean)","live.hms.video.sdk.HMSSDK.Builder.enableIceGatheringOnAnyAddressPorts"]},{"name":"fun enableNoiseCancellation(enable: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.enableNoiseCancellation","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","fun enableNoiseCancellation(enable: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.enableNoiseCancellation"]},{"name":"fun enableNoiseCancellation(enableNoiseCancellation: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","fun enableNoiseCancellation(enableNoiseCancellation: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseCancellation"]},{"name":"fun enableNoiseSupression(enableNoiseSupression: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseSupression","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/enable-noise-supression.html","searchKeys":["enableNoiseSupression","fun enableNoiseSupression(enableNoiseSupression: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.enableNoiseSupression"]},{"name":"fun enableWebrtcNoiseSuppression(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enableWebrtcNoiseSuppression","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/enable-webrtc-noise-suppression.html","searchKeys":["enableWebrtcNoiseSuppression","fun enableWebrtcNoiseSuppression(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enableWebrtcNoiseSuppression"]},{"name":"fun enabledFromDashboard(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enabledFromDashboard","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/enabled-from-dashboard.html","searchKeys":["enabledFromDashboard","fun enabledFromDashboard(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.enabledFromDashboard"]},{"name":"fun endRoom(reason: String, lock: Boolean, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.endRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/end-room.html","searchKeys":["endRoom","fun endRoom(reason: String, lock: Boolean, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.endRoom"]},{"name":"fun exceptionOrNull(): Throwable?","description":"live.hms.video.polls.network.QuestionContainer.exceptionOrNull","location":"lib/live.hms.video.polls.network/-question-container/exception-or-null.html","searchKeys":["exceptionOrNull","fun exceptionOrNull(): Throwable?","live.hms.video.polls.network.QuestionContainer.exceptionOrNull"]},{"name":"fun fetchLeaderboard(pollId: String, count: Long = 50, startIndex: Long = 0, includeCurrentPeer: Boolean = false, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchLeaderboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-leaderboard.html","searchKeys":["fetchLeaderboard","fun fetchLeaderboard(pollId: String, count: Long = 50, startIndex: Long = 0, includeCurrentPeer: Boolean = false, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.fetchLeaderboard"]},{"name":"fun fetchPollList(pollState: HmsPollState, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchPollList","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-poll-list.html","searchKeys":["fetchPollList","fun fetchPollList(pollState: HmsPollState, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.fetchPollList"]},{"name":"fun fetchPollQuestions(poll: HmsPoll, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.fetchPollQuestions","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/fetch-poll-questions.html","searchKeys":["fetchPollQuestions","fun fetchPollQuestions(poll: HmsPoll, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.fetchPollQuestions"]},{"name":"fun flipHorizontally(): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.flipHorizontally","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/flip-horizontally.html","searchKeys":["flipHorizontally","fun flipHorizontally(): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.flipHorizontally"]},{"name":"fun flipVertically(): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.flipVertically","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/flip-vertically.html","searchKeys":["flipVertically","fun flipVertically(): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.flipVertically"]},{"name":"fun forceSoftwareDecoder(forceSoftwareDecoder: Boolean): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.forceSoftwareDecoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","fun forceSoftwareDecoder(forceSoftwareDecoder: Boolean): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.forceSoftwareDecoder"]},{"name":"fun from(audioStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?, localTracksJitter: MutableMap): Track.LocalTrack.LocalAudio","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion.from","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/-companion/from.html","searchKeys":["from","fun from(audioStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?, localTracksJitter: MutableMap): Track.LocalTrack.LocalAudio","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion.from"]},{"name":"fun from(audioStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Audio","description":"live.hms.video.connection.degredation.Audio.Companion.from","location":"lib/live.hms.video.connection.degredation/-audio/-companion/from.html","searchKeys":["from","fun from(audioStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Audio","live.hms.video.connection.degredation.Audio.Companion.from"]},{"name":"fun from(publishInfo: RTCStats): ConnectionInfo.PublishConnection","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.from","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/from.html","searchKeys":["from","fun from(publishInfo: RTCStats): ConnectionInfo.PublishConnection","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.from"]},{"name":"fun from(subscribeInfo: RTCStats): ConnectionInfo.SubscribeConnection","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.from","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/from.html","searchKeys":["from","fun from(subscribeInfo: RTCStats): ConnectionInfo.SubscribeConnection","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.from"]},{"name":"fun from(transportInfo: RTCStats, icePairInfo: RTCStats): Peer","description":"live.hms.video.connection.degredation.Peer.Companion.from","location":"lib/live.hms.video.connection.degredation/-peer/-companion/from.html","searchKeys":["from","fun from(transportInfo: RTCStats, icePairInfo: RTCStats): Peer","live.hms.video.connection.degredation.Peer.Companion.from"]},{"name":"fun from(videoStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?, localTracksJitter: MutableMap): Track.LocalTrack.LocalVideo","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion.from","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/from.html","searchKeys":["from","fun from(videoStat: MutableMap, extraData: RTCStats?, candidatePairInfo: RTCStats?, primaryTimestamp: Double?, localTracksJitter: MutableMap): Track.LocalTrack.LocalVideo","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion.from"]},{"name":"fun from(videoStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Video","description":"live.hms.video.connection.degredation.Video.Companion.from","location":"lib/live.hms.video.connection.degredation/-video/-companion/from.html","searchKeys":["from","fun from(videoStat: MutableMap, extraData: RTCStats?, primaryTimestamp: Double): Video","live.hms.video.connection.degredation.Video.Companion.from"]},{"name":"fun fromPlatformType(type: Int): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.fromPlatformType","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/from-platform-type.html","searchKeys":["fromPlatformType","fun fromPlatformType(type: Int): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.fromPlatformType"]},{"name":"fun get(key: String = DEFAULT_SESSION_METADATA_KEY, hmsSessionMetadataListener: HMSSessionMetadataListener)","description":"live.hms.video.sessionstore.HmsSessionStore.get","location":"lib/live.hms.video.sessionstore/-hms-session-store/get.html","searchKeys":["get","fun get(key: String = DEFAULT_SESSION_METADATA_KEY, hmsSessionMetadataListener: HMSSessionMetadataListener)","live.hms.video.sessionstore.HmsSessionStore.get"]},{"name":"fun getAllAudioTracks(room: HMSRoom): ArrayList","description":"live.hms.video.utils.HmsUtilities.Companion.getAllAudioTracks","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-all-audio-tracks.html","searchKeys":["getAllAudioTracks","fun getAllAudioTracks(room: HMSRoom): ArrayList","live.hms.video.utils.HmsUtilities.Companion.getAllAudioTracks"]},{"name":"fun getAllEnabledFeatures(): List","description":"live.hms.video.sdk.featureflags.FeatureFlags.getAllEnabledFeatures","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/get-all-enabled-features.html","searchKeys":["getAllEnabledFeatures","fun getAllEnabledFeatures(): List","live.hms.video.sdk.featureflags.FeatureFlags.getAllEnabledFeatures"]},{"name":"fun getAllTracks(): Array","description":"live.hms.video.sdk.models.HMSPeer.getAllTracks","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/get-all-tracks.html","searchKeys":["getAllTracks","fun getAllTracks(): Array","live.hms.video.sdk.models.HMSPeer.getAllTracks"]},{"name":"fun getAllVideoTracks(room: HMSRoom): ArrayList","description":"live.hms.video.utils.HmsUtilities.Companion.getAllVideoTracks","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-all-video-tracks.html","searchKeys":["getAllVideoTracks","fun getAllVideoTracks(room: HMSRoom): ArrayList","live.hms.video.utils.HmsUtilities.Companion.getAllVideoTracks"]},{"name":"fun getAudioDevicesInfoList(): List","description":"live.hms.video.sdk.HMSSDK.getAudioDevicesInfoList","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","fun getAudioDevicesInfoList(): List","live.hms.video.sdk.HMSSDK.getAudioDevicesInfoList"]},{"name":"fun getAudioDevicesList(): List","description":"live.hms.video.sdk.HMSSDK.getAudioDevicesList","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-devices-list.html","searchKeys":["getAudioDevicesList","fun getAudioDevicesList(): List","live.hms.video.sdk.HMSSDK.getAudioDevicesList"]},{"name":"fun getAudioOutputRouteType(): HMSAudioManager.AudioDevice","description":"live.hms.video.sdk.HMSSDK.getAudioOutputRouteType","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-audio-output-route-type.html","searchKeys":["getAudioOutputRouteType","fun getAudioOutputRouteType(): HMSAudioManager.AudioDevice","live.hms.video.sdk.HMSSDK.getAudioOutputRouteType"]},{"name":"fun getAudioTrack(trackId: String, room: HMSRoom): HMSAudioTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getAudioTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-audio-track.html","searchKeys":["getAudioTrack","fun getAudioTrack(trackId: String, room: HMSRoom): HMSAudioTrack?","live.hms.video.utils.HmsUtilities.Companion.getAudioTrack"]},{"name":"fun getAuthTokenByRoomCode(tokenRequest: TokenRequest, tokenRequestOptions: TokenRequestOptions? = null, hmsTokenListener: HMSTokenListener)","description":"live.hms.video.sdk.HMSSDK.getAuthTokenByRoomCode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-auth-token-by-room-code.html","searchKeys":["getAuthTokenByRoomCode","fun getAuthTokenByRoomCode(tokenRequest: TokenRequest, tokenRequestOptions: TokenRequestOptions? = null, hmsTokenListener: HMSTokenListener)","live.hms.video.sdk.HMSSDK.getAuthTokenByRoomCode"]},{"name":"fun getBitmap(context: Context, correctOrientation: Boolean, opts: BitmapFactory.Options? = null): Bitmap?","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.getBitmap","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/get-bitmap.html","searchKeys":["getBitmap","fun getBitmap(context: Context, correctOrientation: Boolean, opts: BitmapFactory.Options? = null): Bitmap?","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.getBitmap"]},{"name":"fun getCameraControl(): CameraControl?","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getCameraControl","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-camera-control.html","searchKeys":["getCameraControl","fun getCameraControl(): CameraControl?","live.hms.video.media.tracks.HMSLocalVideoTrack.getCameraControl"]},{"name":"fun getCollectedSamples(force: Boolean = false): AudioAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(force: Boolean = false): AudioAnalytics","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(force: Boolean = false): VideoAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(force: Boolean = false): VideoAnalytics","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(forcePublish: Boolean): AudioAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(forcePublish: Boolean): AudioAnalytics","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.getCollectedSamples"]},{"name":"fun getCollectedSamples(forcePublish: Boolean): VideoAnalytics","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.getCollectedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/get-collected-samples.html","searchKeys":["getCollectedSamples","fun getCollectedSamples(forcePublish: Boolean): VideoAnalytics","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.getCollectedSamples"]},{"name":"fun getDiagnosticsSDK(customerUserId: String?): HMSDiagnostics","description":"live.hms.video.sdk.HMSSDK.getDiagnosticsSDK","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-diagnostics-s-d-k.html","searchKeys":["getDiagnosticsSDK","fun getDiagnosticsSDK(customerUserId: String?): HMSDiagnostics","live.hms.video.sdk.HMSSDK.getDiagnosticsSDK"]},{"name":"fun getDirPath(context: Context): File","description":"live.hms.video.utils.LogUtils.getDirPath","location":"lib/live.hms.video.utils/-log-utils/get-dir-path.html","searchKeys":["getDirPath","fun getDirPath(context: Context): File","live.hms.video.utils.LogUtils.getDirPath"]},{"name":"fun getEquivalentPlatformTypes(audioDevice: AudioManagerUtil.AudioDevice): List","description":"live.hms.video.audio.manager.AudioDeviceMapping.getEquivalentPlatformTypes","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/get-equivalent-platform-types.html","searchKeys":["getEquivalentPlatformTypes","fun getEquivalentPlatformTypes(audioDevice: AudioManagerUtil.AudioDevice): List","live.hms.video.audio.manager.AudioDeviceMapping.getEquivalentPlatformTypes"]},{"name":"fun getHmsInteractivityCenter(): HmsInteractivityCenter","description":"live.hms.video.sdk.HMSSDK.getHmsInteractivityCenter","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-hms-interactivity-center.html","searchKeys":["getHmsInteractivityCenter","fun getHmsInteractivityCenter(): HmsInteractivityCenter","live.hms.video.sdk.HMSSDK.getHmsInteractivityCenter"]},{"name":"fun getInputResolutionAndFps(): Pair","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getInputResolutionAndFps","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-input-resolution-and-fps.html","searchKeys":["getInputResolutionAndFps","fun getInputResolutionAndFps(): Pair","live.hms.video.media.tracks.HMSLocalVideoTrack.getInputResolutionAndFps"]},{"name":"fun getLayer(): HMSLayer","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayer","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/get-layer.html","searchKeys":["getLayer","fun getLayer(): HMSLayer","live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayer"]},{"name":"fun getLayerDefinition(): List","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayerDefinition","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/get-layer-definition.html","searchKeys":["getLayerDefinition","fun getLayerDefinition(): List","live.hms.video.media.tracks.HMSRemoteVideoTrack.getLayerDefinition"]},{"name":"fun getLocalPeer(): HMSLocalPeer?","description":"live.hms.video.sdk.HMSSDK.getLocalPeer","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-local-peer.html","searchKeys":["getLocalPeer","fun getLocalPeer(): HMSLocalPeer?","live.hms.video.sdk.HMSSDK.getLocalPeer"]},{"name":"fun getManualFocusRange(): Range","description":"live.hms.video.media.capturers.camera.CameraControl.getManualFocusRange","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-manual-focus-range.html","searchKeys":["getManualFocusRange","fun getManualFocusRange(): Range","live.hms.video.media.capturers.camera.CameraControl.getManualFocusRange"]},{"name":"fun getMaxZoom(): Float","description":"live.hms.video.media.capturers.camera.CameraControl.getMaxZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-max-zoom.html","searchKeys":["getMaxZoom","fun getMaxZoom(): Float","live.hms.video.media.capturers.camera.CameraControl.getMaxZoom"]},{"name":"fun getMinZoom(): Float","description":"live.hms.video.media.capturers.camera.CameraControl.getMinZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/get-min-zoom.html","searchKeys":["getMinZoom","fun getMinZoom(): Float","live.hms.video.media.capturers.camera.CameraControl.getMinZoom"]},{"name":"fun getModelStream(context: Context): InputStream","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.getModelStream","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/get-model-stream.html","searchKeys":["getModelStream","fun getModelStream(context: Context): InputStream","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.getModelStream"]},{"name":"fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.sdk.HMSSDK.getNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","fun getNoiseCancellationEnabled(): Boolean","live.hms.video.sdk.HMSSDK.getNoiseCancellationEnabled"]},{"name":"fun getPeer(peerId: String, room: HMSRoom): HMSPeer?","description":"live.hms.video.utils.HmsUtilities.Companion.getPeer","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-peer.html","searchKeys":["getPeer","fun getPeer(peerId: String, room: HMSRoom): HMSPeer?","live.hms.video.utils.HmsUtilities.Companion.getPeer"]},{"name":"fun getPeerById(peerId: String): HMSPeer?","description":"live.hms.video.sdk.HMSSDK.getPeerById","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peer-by-id.html","searchKeys":["getPeerById","fun getPeerById(peerId: String): HMSPeer?","live.hms.video.sdk.HMSSDK.getPeerById"]},{"name":"fun getPeerListIterator(peerListIteratorOptions: PeerListIteratorOptions? = null): PeerListIterator","description":"live.hms.video.sdk.HMSSDK.getPeerListIterator","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peer-list-iterator.html","searchKeys":["getPeerListIterator","fun getPeerListIterator(peerListIteratorOptions: PeerListIteratorOptions? = null): PeerListIterator","live.hms.video.sdk.HMSSDK.getPeerListIterator"]},{"name":"fun getPeers(): List","description":"live.hms.video.sdk.HMSSDK.getPeers","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-peers.html","searchKeys":["getPeers","fun getPeers(): List","live.hms.video.sdk.HMSSDK.getPeers"]},{"name":"fun getPlugins(): List?","description":"live.hms.video.sdk.HMSSDK.getPlugins","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-plugins.html","searchKeys":["getPlugins","fun getPlugins(): List?","live.hms.video.sdk.HMSSDK.getPlugins"]},{"name":"fun getPollResults(poll: HmsPoll, completion: HmsTypedActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.getPollResults","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/get-poll-results.html","searchKeys":["getPollResults","fun getPollResults(poll: HmsPoll, completion: HmsTypedActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.getPollResults"]},{"name":"fun getRemotePeers(): List","description":"live.hms.video.sdk.HMSSDK.getRemotePeers","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-remote-peers.html","searchKeys":["getRemotePeers","fun getRemotePeers(): List","live.hms.video.sdk.HMSSDK.getRemotePeers"]},{"name":"fun getResponses(poll: HmsPoll, offset: Int = 0, count: Int = 50, ownResponsesOnly: Boolean, completion: HmsTypedActionResultListener>)","description":"live.hms.video.interactivity.HmsInteractivityCenter.getResponses","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/get-responses.html","searchKeys":["getResponses","fun getResponses(poll: HmsPoll, offset: Int = 0, count: Int = 50, ownResponsesOnly: Boolean, completion: HmsTypedActionResultListener>)","live.hms.video.interactivity.HmsInteractivityCenter.getResponses"]},{"name":"fun getRoles(): List","description":"live.hms.video.sdk.HMSSDK.getRoles","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-roles.html","searchKeys":["getRoles","fun getRoles(): List","live.hms.video.sdk.HMSSDK.getRoles"]},{"name":"fun getRoom(): HMSRoom?","description":"live.hms.video.sdk.HMSSDK.getRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-room.html","searchKeys":["getRoom","fun getRoom(): HMSRoom?","live.hms.video.sdk.HMSSDK.getRoom"]},{"name":"fun getRoomLayout(authToken: String, layoutRequestOptions: LayoutRequestOptions? = null, layoutListener: HMSLayoutListener)","description":"live.hms.video.sdk.HMSSDK.getRoomLayout","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-room-layout.html","searchKeys":["getRoomLayout","fun getRoomLayout(authToken: String, layoutRequestOptions: LayoutRequestOptions? = null, layoutListener: HMSLayoutListener)","live.hms.video.sdk.HMSSDK.getRoomLayout"]},{"name":"fun getSampleRate(audioManager: AudioManager): Int","description":"live.hms.video.utils.WertcAudioUtils.Companion.getSampleRate","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/get-sample-rate.html","searchKeys":["getSampleRate","fun getSampleRate(audioManager: AudioManager): Int","live.hms.video.utils.WertcAudioUtils.Companion.getSampleRate"]},{"name":"fun getSampleRateForApiLevel(audioManager: AudioManager): Int","description":"live.hms.video.utils.WertcAudioUtils.Companion.getSampleRateForApiLevel","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/get-sample-rate-for-api-level.html","searchKeys":["getSampleRateForApiLevel","fun getSampleRateForApiLevel(audioManager: AudioManager): Int","live.hms.video.utils.WertcAudioUtils.Companion.getSampleRateForApiLevel"]},{"name":"fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap): Int","description":"live.hms.video.sdk.SpeedTest.getSpeedTestScore","location":"lib/live.hms.video.sdk/-speed-test/get-speed-test-score.html","searchKeys":["getSpeedTestScore","fun getSpeedTestScore(kilobytesPerSecond: Double?, scoreMap: SortedMap): Int","live.hms.video.sdk.SpeedTest.getSpeedTestScore"]},{"name":"fun getStopScreenSharePendingIntent(context: Context): PendingIntent","description":"live.hms.video.services.HMSScreenCaptureService.Companion.getStopScreenSharePendingIntent","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/get-stop-screen-share-pending-intent.html","searchKeys":["getStopScreenSharePendingIntent","fun getStopScreenSharePendingIntent(context: Context): PendingIntent","live.hms.video.services.HMSScreenCaptureService.Companion.getStopScreenSharePendingIntent"]},{"name":"fun getSupportedVp8CodecsList(): List","description":"live.hms.video.utils.HmsUtilities.Companion.getSupportedVp8CodecsList","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-supported-vp8-codecs-list.html","searchKeys":["getSupportedVp8CodecsList","fun getSupportedVp8CodecsList(): List","live.hms.video.utils.HmsUtilities.Companion.getSupportedVp8CodecsList"]},{"name":"fun getTextureHelper(): SurfaceTextureHelper","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.getTextureHelper","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/get-texture-helper.html","searchKeys":["getTextureHelper","fun getTextureHelper(): SurfaceTextureHelper","live.hms.video.media.tracks.HMSLocalVideoTrack.getTextureHelper"]},{"name":"fun getTrack(trackId: String, room: HMSRoom): HMSTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-track.html","searchKeys":["getTrack","fun getTrack(trackId: String, room: HMSRoom): HMSTrack?","live.hms.video.utils.HmsUtilities.Companion.getTrack"]},{"name":"fun getTrackById(trackId: String): HMSTrack?","description":"live.hms.video.sdk.models.HMSPeer.getTrackById","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/get-track-by-id.html","searchKeys":["getTrackById","fun getTrackById(trackId: String): HMSTrack?","live.hms.video.sdk.models.HMSPeer.getTrackById"]},{"name":"fun getVideoTrack(trackId: String, room: HMSRoom): HMSVideoTrack?","description":"live.hms.video.utils.HmsUtilities.Companion.getVideoTrack","location":"lib/live.hms.video.utils/-hms-utilities/-companion/get-video-track.html","searchKeys":["getVideoTrack","fun getVideoTrack(trackId: String, room: HMSRoom): HMSVideoTrack?","live.hms.video.utils.HmsUtilities.Companion.getVideoTrack"]},{"name":"fun getVolume(): Double","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.getVolume","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/get-volume.html","searchKeys":["getVolume","fun getVolume(): Double","live.hms.video.media.tracks.HMSRemoteAudioTrack.getVolume"]},{"name":"fun getWhiteboardPermissions(): HMSWhiteboardPermissions","description":"live.hms.video.sdk.HMSSDK.getWhiteboardPermissions","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/get-whiteboard-permissions.html","searchKeys":["getWhiteboardPermissions","fun getWhiteboardPermissions(): HMSWhiteboardPermissions","live.hms.video.sdk.HMSSDK.getWhiteboardPermissions"]},{"name":"fun haltPreviewJoinForPermissionsRequest(halt: Boolean): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.haltPreviewJoinForPermissionsRequest","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/halt-preview-join-for-permissions-request.html","searchKeys":["haltPreviewJoinForPermissionsRequest","fun haltPreviewJoinForPermissionsRequest(halt: Boolean): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.haltPreviewJoinForPermissionsRequest"]},{"name":"fun hasBluetoothError(context: Context): BluetoothErrorType?","description":"live.hms.video.audio.BluetoothPermissionHandler.hasBluetoothError","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/has-bluetooth-error.html","searchKeys":["hasBluetoothError","fun hasBluetoothError(context: Context): BluetoothErrorType?","live.hms.video.audio.BluetoothPermissionHandler.hasBluetoothError"]},{"name":"fun hasNext(): Boolean","description":"live.hms.video.sdk.models.PeerListIterator.hasNext","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/has-next.html","searchKeys":["hasNext","fun hasNext(): Boolean","live.hms.video.sdk.models.PeerListIterator.hasNext"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.hasSample"]},{"name":"fun hasSample(): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.hasSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/has-sample.html","searchKeys":["hasSample","fun hasSample(): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.hasSample"]},{"name":"fun high(high: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.high","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/high.html","searchKeys":["high","fun high(high: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.high"]},{"name":"fun i(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.i","location":"lib/live.hms.video.utils/-h-m-s-logger/i.html","searchKeys":["i","fun i(tag: String, message: String)","live.hms.video.utils.HMSLogger.i"]},{"name":"fun initialState(initialState: HMSTrackSettings.InitState): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/initial-state.html","searchKeys":["initialState","fun initialState(initialState: HMSTrackSettings.InitState): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.initialState"]},{"name":"fun initialState(initialState: HMSTrackSettings.InitState): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/initial-state.html","searchKeys":["initialState","fun initialState(initialState: HMSTrackSettings.InitState): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.initialState"]},{"name":"fun initialize()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.initialize","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/initialize.html","searchKeys":["initialize","fun initialize()","live.hms.video.audio.manager.HMSAudioManagerApi31.initialize"]},{"name":"fun initialize(block: () -> T)","description":"live.hms.video.factories.SafeVariable.initialize","location":"lib/live.hms.video.factories/-safe-variable/initialize.html","searchKeys":["initialize","fun initialize(block: () -> T)","live.hms.video.factories.SafeVariable.initialize"]},{"name":"fun injectLoggable(loggable: HMSLogger.Loggable)","description":"live.hms.video.utils.HMSLogger.injectLoggable","location":"lib/live.hms.video.utils/-h-m-s-logger/inject-loggable.html","searchKeys":["injectLoggable","fun injectLoggable(loggable: HMSLogger.Loggable)","live.hms.video.utils.HMSLogger.injectLoggable"]},{"name":"fun interface BluetoothErrors","description":"live.hms.video.audio.BluetoothErrors","location":"lib/live.hms.video.audio/-bluetooth-errors/index.html","searchKeys":["BluetoothErrors","fun interface BluetoothErrors","live.hms.video.audio.BluetoothErrors"]},{"name":"fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean","description":"live.hms.video.utils.WertcAudioUtils.Companion.isEffectTypeAvailable","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/is-effect-type-available.html","searchKeys":["isEffectTypeAvailable","fun isEffectTypeAvailable(effectType: UUID, blockListedUuid: UUID): Boolean","live.hms.video.utils.WertcAudioUtils.Companion.isEffectTypeAvailable"]},{"name":"fun isFeatureEnabled(feat: Features): Boolean","description":"live.hms.video.sdk.featureflags.FeatureFlags.isFeatureEnabled","location":"lib/live.hms.video.sdk.featureflags/-feature-flags/is-feature-enabled.html","searchKeys":["isFeatureEnabled","fun isFeatureEnabled(feat: Features): Boolean","live.hms.video.sdk.featureflags.FeatureFlags.isFeatureEnabled"]},{"name":"fun isFlashEnabled(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isFlashEnabled","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-flash-enabled.html","searchKeys":["isFlashEnabled","fun isFlashEnabled(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isFlashEnabled"]},{"name":"fun isFlashSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isFlashSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-flash-supported.html","searchKeys":["isFlashSupported","fun isFlashSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isFlashSupported"]},{"name":"fun isManualFocusSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isManualFocusSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-manual-focus-supported.html","searchKeys":["isManualFocusSupported","fun isManualFocusSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isManualFocusSupported"]},{"name":"fun isMicrophoneAccessAvailable(context: Context): Boolean","description":"live.hms.video.utils.MicrophoneUtils.Companion.isMicrophoneAccessAvailable","location":"lib/live.hms.video.utils/-microphone-utils/-companion/is-microphone-access-available.html","searchKeys":["isMicrophoneAccessAvailable","fun isMicrophoneAccessAvailable(context: Context): Boolean","live.hms.video.utils.MicrophoneUtils.Companion.isMicrophoneAccessAvailable"]},{"name":"fun isNoiseCancellationAvailable(): AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.isNoiseCancellationAvailable","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/is-noise-cancellation-available.html","searchKeys":["isNoiseCancellationAvailable","fun isNoiseCancellationAvailable(): AvailabilityStatus","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.isNoiseCancellationAvailable"]},{"name":"fun isNoiseCancellationAvailable(): AvailabilityStatus","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationAvailable","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-available.html","searchKeys":["isNoiseCancellationAvailable","fun isNoiseCancellationAvailable(): AvailabilityStatus","live.hms.video.sdk.HMSSDK.isNoiseCancellationAvailable"]},{"name":"fun isNoiseCancellationEnabled(): Boolean","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-enabled.html","searchKeys":["isNoiseCancellationEnabled","fun isNoiseCancellationEnabled(): Boolean","live.hms.video.sdk.HMSSDK.isNoiseCancellationEnabled"]},{"name":"fun isNoiseCancellationSupported(): AvailabilityStatus","description":"live.hms.video.sdk.HMSSDK.isNoiseCancellationSupported","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-noise-cancellation-supported.html","searchKeys":["isNoiseCancellationSupported","fun isNoiseCancellationSupported(): AvailabilityStatus","live.hms.video.sdk.HMSSDK.isNoiseCancellationSupported"]},{"name":"fun isScreenShared(): Boolean","description":"live.hms.video.sdk.HMSSDK.isScreenShared","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/is-screen-shared.html","searchKeys":["isScreenShared","fun isScreenShared(): Boolean","live.hms.video.sdk.HMSSDK.isScreenShared"]},{"name":"fun isSoftwareOnly(codecInfo: MediaCodecInfo): Boolean","description":"live.hms.video.utils.HmsUtilities.Companion.isSoftwareOnly","location":"lib/live.hms.video.utils/-hms-utilities/-companion/is-software-only.html","searchKeys":["isSoftwareOnly","fun isSoftwareOnly(codecInfo: MediaCodecInfo): Boolean","live.hms.video.utils.HmsUtilities.Companion.isSoftwareOnly"]},{"name":"fun isTapToFocusSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isTapToFocusSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-tap-to-focus-supported.html","searchKeys":["isTapToFocusSupported","fun isTapToFocusSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isTapToFocusSupported"]},{"name":"fun isValid(): Boolean","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.isValid","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/is-valid.html","searchKeys":["isValid","fun isValid(): Boolean","live.hms.video.sdk.models.role.SubscribeDegradationParams.isValid"]},{"name":"fun isWebrtcPeer(): Boolean","description":"live.hms.video.sdk.models.HMSLocalPeer.isWebrtcPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/is-webrtc-peer.html","searchKeys":["isWebrtcPeer","fun isWebrtcPeer(): Boolean","live.hms.video.sdk.models.HMSLocalPeer.isWebrtcPeer"]},{"name":"fun isZoomSupported(): Boolean","description":"live.hms.video.media.capturers.camera.CameraControl.isZoomSupported","location":"lib/live.hms.video.media.capturers.camera/-camera-control/is-zoom-supported.html","searchKeys":["isZoomSupported","fun isZoomSupported(): Boolean","live.hms.video.media.capturers.camera.CameraControl.isZoomSupported"]},{"name":"fun join(config: HMSConfig, hmsUpdateListener: HMSUpdateListener)","description":"live.hms.video.sdk.HMSSDK.join","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/join.html","searchKeys":["join","fun join(config: HMSConfig, hmsUpdateListener: HMSUpdateListener)","live.hms.video.sdk.HMSSDK.join"]},{"name":"fun joined(time: Long = System.currentTimeMillis())","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.joined","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/joined.html","searchKeys":["joined","fun joined(time: Long = System.currentTimeMillis())","live.hms.video.sdk.OfflineAnalyticsPeerInfo.joined"]},{"name":"fun leave(hmsActionResultListener: HMSActionResultListener? = null)","description":"live.hms.video.sdk.HMSSDK.leave","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/leave.html","searchKeys":["leave","fun leave(hmsActionResultListener: HMSActionResultListener? = null)","live.hms.video.sdk.HMSSDK.leave"]},{"name":"fun leave(time: Long = System.currentTimeMillis())","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.leave","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/leave.html","searchKeys":["leave","fun leave(time: Long = System.currentTimeMillis())","live.hms.video.sdk.OfflineAnalyticsPeerInfo.leave"]},{"name":"fun logDeviceInfo(tag: String)","description":"live.hms.video.utils.HMSLogger.logDeviceInfo","location":"lib/live.hms.video.utils/-h-m-s-logger/log-device-info.html","searchKeys":["logDeviceInfo","fun logDeviceInfo(tag: String)","live.hms.video.utils.HMSLogger.logDeviceInfo"]},{"name":"fun low(low: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.low","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/low.html","searchKeys":["low","fun low(low: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.low"]},{"name":"fun lowerLocalPeerHand(actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.lowerLocalPeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/lower-local-peer-hand.html","searchKeys":["lowerLocalPeerHand","fun lowerLocalPeerHand(actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.lowerLocalPeerHand"]},{"name":"fun lowerRemotePeerHand(forPeer: HMSPeer, actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.lowerRemotePeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/lower-remote-peer-hand.html","searchKeys":["lowerRemotePeerHand","fun lowerRemotePeerHand(forPeer: HMSPeer, actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.lowerRemotePeerHand"]},{"name":"fun mapToPollLeaderboardResponse(): PollLeaderboardResponse","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.mapToPollLeaderboardResponse","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/map-to-poll-leaderboard-response.html","searchKeys":["mapToPollLeaderboardResponse","fun mapToPollLeaderboardResponse(): PollLeaderboardResponse","live.hms.video.polls.network.HMSPollLeaderboardResponse.mapToPollLeaderboardResponse"]},{"name":"fun mapToString(value: HashMap): String","description":"live.hms.video.database.converters.TypeConverter.Companion.mapToString","location":"lib/live.hms.video.database.converters/-type-converter/-companion/map-to-string.html","searchKeys":["mapToString","fun mapToString(value: HashMap): String","live.hms.video.database.converters.TypeConverter.Companion.mapToString"]},{"name":"fun maxBitrate(maxBitRate: Int): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/max-bitrate.html","searchKeys":["maxBitrate","fun maxBitrate(maxBitRate: Int): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.maxBitrate"]},{"name":"fun maxBitrate(maxBitRate: Int): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/max-bitrate.html","searchKeys":["maxBitrate","fun maxBitrate(maxBitRate: Int): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxBitrate"]},{"name":"fun maxFrameRate(maxFrameRate: Int): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxFrameRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/max-frame-rate.html","searchKeys":["maxFrameRate","fun maxFrameRate(maxFrameRate: Int): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.maxFrameRate"]},{"name":"fun medium(medium: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","description":"live.hms.video.media.settings.HMSSimulcastSettings.Builder.medium","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-builder/medium.html","searchKeys":["medium","fun medium(medium: HMSSimulcastSettings.Item): HMSSimulcastSettings.Builder","live.hms.video.media.settings.HMSSimulcastSettings.Builder.medium"]},{"name":"fun next(peerListResultListener: PeerListResultListener)","description":"live.hms.video.sdk.models.PeerListIterator.next","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/next.html","searchKeys":["next","fun next(peerListResultListener: PeerListResultListener)","live.hms.video.sdk.models.PeerListIterator.next"]},{"name":"fun preview(config: HMSConfig, listener: HMSPreviewListener)","description":"live.hms.video.sdk.HMSSDK.preview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/preview.html","searchKeys":["preview","fun preview(config: HMSConfig, listener: HMSPreviewListener)","live.hms.video.sdk.HMSSDK.preview"]},{"name":"fun preview(forRole: HMSRole, rolePreviewListener: RolePreviewListener)","description":"live.hms.video.sdk.HMSSDK.preview","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/preview.html","searchKeys":["preview","fun preview(forRole: HMSRole, rolePreviewListener: RolePreviewListener)","live.hms.video.sdk.HMSSDK.preview"]},{"name":"fun quickStartPoll(poll: HMSPollBuilder, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.quickStartPoll","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/quick-start-poll.html","searchKeys":["quickStartPoll","fun quickStartPoll(poll: HMSPollBuilder, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.quickStartPoll"]},{"name":"fun raiseLocalPeerHand(actionlistener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.raiseLocalPeerHand","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/raise-local-peer-hand.html","searchKeys":["raiseLocalPeerHand","fun raiseLocalPeerHand(actionlistener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.raiseLocalPeerHand"]},{"name":"fun removeAudioObserver()","description":"live.hms.video.sdk.HMSSDK.removeAudioObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-audio-observer.html","searchKeys":["removeAudioObserver","fun removeAudioObserver()","live.hms.video.sdk.HMSSDK.removeAudioObserver"]},{"name":"fun removeInjectedLoggable()","description":"live.hms.video.utils.HMSLogger.removeInjectedLoggable","location":"lib/live.hms.video.utils/-h-m-s-logger/remove-injected-loggable.html","searchKeys":["removeInjectedLoggable","fun removeInjectedLoggable()","live.hms.video.utils.HMSLogger.removeInjectedLoggable"]},{"name":"fun removeKeyChangeListener(listener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener? = null): Job","description":"live.hms.video.sessionstore.HmsSessionStore.removeKeyChangeListener","location":"lib/live.hms.video.sessionstore/-hms-session-store/remove-key-change-listener.html","searchKeys":["removeKeyChangeListener","fun removeKeyChangeListener(listener: HMSKeyChangeListener, hmsActionResultListener: HMSActionResultListener? = null): Job","live.hms.video.sessionstore.HmsSessionStore.removeKeyChangeListener"]},{"name":"fun removePeerRequest(peer: HMSRemotePeer, reason: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.removePeerRequest","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-peer-request.html","searchKeys":["removePeerRequest","fun removePeerRequest(peer: HMSRemotePeer, reason: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.removePeerRequest"]},{"name":"fun removePlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.removePlugin","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-plugin.html","searchKeys":["removePlugin","fun removePlugin(plugin: HMSVideoPlugin, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.removePlugin"]},{"name":"fun removeRtcStatsObserver()","description":"live.hms.video.sdk.HMSSDK.removeRtcStatsObserver","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/remove-rtc-stats-observer.html","searchKeys":["removeRtcStatsObserver","fun removeRtcStatsObserver()","live.hms.video.sdk.HMSSDK.removeRtcStatsObserver"]},{"name":"fun removeWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","description":"live.hms.video.interactivity.HmsInteractivityCenter.removeWhiteboardUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/remove-whiteboard-update-listener.html","searchKeys":["removeWhiteboardUpdateListener","fun removeWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","live.hms.video.interactivity.HmsInteractivityCenter.removeWhiteboardUpdateListener"]},{"name":"fun reset()","description":"live.hms.video.factories.SafeVariable.reset","location":"lib/live.hms.video.factories/-safe-variable/reset.html","searchKeys":["reset","fun reset()","live.hms.video.factories.SafeVariable.reset"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.resetSamples"]},{"name":"fun resetSamples()","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.resetSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/reset-samples.html","searchKeys":["resetSamples","fun resetSamples()","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.resetSamples"]},{"name":"fun resetZoom()","description":"live.hms.video.media.capturers.camera.CameraControl.resetZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/reset-zoom.html","searchKeys":["resetZoom","fun resetZoom()","live.hms.video.media.capturers.camera.CameraControl.resetZoom"]},{"name":"fun resolution(resolution: HMSVideoResolution): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/resolution.html","searchKeys":["resolution","fun resolution(resolution: HMSVideoResolution): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.resolution"]},{"name":"fun rotate(degrees: Float): Matrix","description":"live.hms.video.media.capturers.camera.utils.BitMatrix.rotate","location":"lib/live.hms.video.media.capturers.camera.utils/-bit-matrix/rotate.html","searchKeys":["rotate","fun rotate(degrees: Float): Matrix","live.hms.video.media.capturers.camera.utils.BitMatrix.rotate"]},{"name":"fun runningOnEmulator(): Boolean","description":"live.hms.video.utils.WertcAudioUtils.Companion.runningOnEmulator","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/running-on-emulator.html","searchKeys":["runningOnEmulator","fun runningOnEmulator(): Boolean","live.hms.video.utils.WertcAudioUtils.Companion.runningOnEmulator"]},{"name":"fun saveLogsToFile(context: Context, filename: String): File","description":"live.hms.video.utils.LogUtils.saveLogsToFile","location":"lib/live.hms.video.utils/-log-utils/save-logs-to-file.html","searchKeys":["saveLogsToFile","fun saveLogsToFile(context: Context, filename: String): File","live.hms.video.utils.LogUtils.saveLogsToFile"]},{"name":"fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","description":"live.hms.video.utils.HMSCoroutineScope.schedule","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule.html","searchKeys":["schedule","fun schedule(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","live.hms.video.utils.HMSCoroutineScope.schedule"]},{"name":"fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","description":"live.hms.video.utils.HMSCoroutineScope.scheduleWithFixedDelay","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/schedule-with-fixed-delay.html","searchKeys":["scheduleWithFixedDelay","fun scheduleWithFixedDelay(delay: Long, unit: TimeUnit = TimeUnit.MILLISECONDS, task: suspend () -> Unit): ScheduledFuture<*>","live.hms.video.utils.HMSCoroutineScope.scheduleWithFixedDelay"]},{"name":"fun scheduleWork(context: Context, dirSize: Long)","description":"live.hms.video.services.LogAlarmManager.scheduleWork","location":"lib/live.hms.video.services/-log-alarm-manager/schedule-work.html","searchKeys":["scheduleWork","fun scheduleWork(context: Context, dirSize: Long)","live.hms.video.services.LogAlarmManager.scheduleWork"]},{"name":"fun searchPeerNameInLargeRoom(query: String, limit: Int, offset: Long, listener: HmsTypedActionResultListener)","description":"live.hms.video.sdk.HMSSDK.searchPeerNameInLargeRoom","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/search-peer-name-in-large-room.html","searchKeys":["searchPeerNameInLargeRoom","fun searchPeerNameInLargeRoom(query: String, limit: Int, offset: Long, listener: HmsTypedActionResultListener)","live.hms.video.sdk.HMSSDK.searchPeerNameInLargeRoom"]},{"name":"fun sendBroadcastMessage(message: String, type: String = HMSMessageType.CHAT, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendBroadcastMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-broadcast-message.html","searchKeys":["sendBroadcastMessage","fun sendBroadcastMessage(message: String, type: String = HMSMessageType.CHAT, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendBroadcastMessage"]},{"name":"fun sendDirectMessage(message: String, type: String = HMSMessageType.CHAT, peerTo: HMSPeer, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendDirectMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-direct-message.html","searchKeys":["sendDirectMessage","fun sendDirectMessage(message: String, type: String = HMSMessageType.CHAT, peerTo: HMSPeer, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendDirectMessage"]},{"name":"fun sendErrorEvent(hmsException: HMSException)","description":"live.hms.video.sdk.HMSSDK.sendErrorEvent","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-error-event.html","searchKeys":["sendErrorEvent","fun sendErrorEvent(hmsException: HMSException)","live.hms.video.sdk.HMSSDK.sendErrorEvent"]},{"name":"fun sendGroupMessage(message: String, type: String = HMSMessageType.CHAT, hmsRolesTo: List, hmsMessageResultListener: HMSMessageResultListener)","description":"live.hms.video.sdk.HMSSDK.sendGroupMessage","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/send-group-message.html","searchKeys":["sendGroupMessage","fun sendGroupMessage(message: String, type: String = HMSMessageType.CHAT, hmsRolesTo: List, hmsMessageResultListener: HMSMessageResultListener)","live.hms.video.sdk.HMSSDK.sendGroupMessage"]},{"name":"fun set(data: Any?, key: String, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sessionstore.HmsSessionStore.set","location":"lib/live.hms.video.sessionstore/-hms-session-store/set.html","searchKeys":["set","fun set(data: Any?, key: String, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sessionstore.HmsSessionStore.set"]},{"name":"fun setAnalyticEventLevel(level: HMSAnalyticsEventLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setAnalyticEventLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-analytic-event-level.html","searchKeys":["setAnalyticEventLevel","fun setAnalyticEventLevel(level: HMSAnalyticsEventLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setAnalyticEventLevel"]},{"name":"fun setAudioDeviceChangeListener(audioManageDeviceChangeDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","description":"live.hms.video.sdk.HMSSDK.setAudioDeviceChangeListener","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-device-change-listener.html","searchKeys":["setAudioDeviceChangeListener","fun setAudioDeviceChangeListener(audioManageDeviceChangeDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","live.hms.video.sdk.HMSSDK.setAudioDeviceChangeListener"]},{"name":"fun setAudioMixingMode(audioMixingMode: AudioMixingMode)","description":"live.hms.video.sdk.HMSSDK.setAudioMixingMode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-mixing-mode.html","searchKeys":["setAudioMixingMode","fun setAudioMixingMode(audioMixingMode: AudioMixingMode)","live.hms.video.sdk.HMSSDK.setAudioMixingMode"]},{"name":"fun setAudioMode(audioMode: HMSAudioTrackSettings.HMSAudioMode): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setAudioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-audio-mode.html","searchKeys":["setAudioMode","fun setAudioMode(audioMode: HMSAudioTrackSettings.HMSAudioMode): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setAudioMode"]},{"name":"fun setAudioMode(audioMode: Int)","description":"live.hms.video.sdk.HMSSDK.setAudioMode","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-audio-mode.html","searchKeys":["setAudioMode","fun setAudioMode(audioMode: Int)","live.hms.video.sdk.HMSSDK.setAudioMode"]},{"name":"fun setDegradationPreference(degradationPreference: DegradationPreference): HMSVideoTrackSettings.Builder","description":"live.hms.video.media.settings.HMSVideoTrackSettings.Builder.setDegradationPreference","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-builder/set-degradation-preference.html","searchKeys":["setDegradationPreference","fun setDegradationPreference(degradationPreference: DegradationPreference): HMSVideoTrackSettings.Builder","live.hms.video.media.settings.HMSVideoTrackSettings.Builder.setDegradationPreference"]},{"name":"fun setDisableInternalAudioManager(disableInternalAudioManager: Boolean): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setDisableInternalAudioManager","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-disable-internal-audio-manager.html","searchKeys":["setDisableInternalAudioManager","fun setDisableInternalAudioManager(disableInternalAudioManager: Boolean): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setDisableInternalAudioManager"]},{"name":"fun setFlash(enable: Boolean)","description":"live.hms.video.media.capturers.camera.CameraControl.setFlash","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-flash.html","searchKeys":["setFlash","fun setFlash(enable: Boolean)","live.hms.video.media.capturers.camera.CameraControl.setFlash"]},{"name":"fun setFrameworkInfo(frameworkInfo: FrameworkInfo): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setFrameworkInfo","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-framework-info.html","searchKeys":["setFrameworkInfo","fun setFrameworkInfo(frameworkInfo: FrameworkInfo): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setFrameworkInfo"]},{"name":"fun setHlsSessionMetadata(metadata: List, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.setHlsSessionMetadata","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-hls-session-metadata.html","searchKeys":["setHlsSessionMetadata","fun setHlsSessionMetadata(metadata: List, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.setHlsSessionMetadata"]},{"name":"fun setIsDispose()","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setIsDispose","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-is-dispose.html","searchKeys":["setIsDispose","fun setIsDispose()","live.hms.video.media.tracks.HMSLocalAudioTrack.setIsDispose"]},{"name":"fun setIsDispose()","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setIsDispose","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-is-dispose.html","searchKeys":["setIsDispose","fun setIsDispose()","live.hms.video.media.tracks.HMSLocalVideoTrack.setIsDispose"]},{"name":"fun setLayer(HMSLayer: HMSLayer, resultListener: HMSAddSinkResultListener? = null)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.setLayer","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/set-layer.html","searchKeys":["setLayer","fun setLayer(HMSLayer: HMSLayer, resultListener: HMSAddSinkResultListener? = null)","live.hms.video.media.tracks.HMSRemoteVideoTrack.setLayer"]},{"name":"fun setLogLevel(hmsLogLevel: HMSLogger.LogLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-log-level.html","searchKeys":["setLogLevel","fun setLogLevel(hmsLogLevel: HMSLogger.LogLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setLogLevel"]},{"name":"fun setLogSettings(hmsLogSettings: HMSLogSettings): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setLogSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-log-settings.html","searchKeys":["setLogSettings","fun setLogSettings(hmsLogSettings: HMSLogSettings): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setLogSettings"]},{"name":"fun setManualFocus(range: Float)","description":"live.hms.video.media.capturers.camera.CameraControl.setManualFocus","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-manual-focus.html","searchKeys":["setManualFocus","fun setManualFocus(range: Float)","live.hms.video.media.capturers.camera.CameraControl.setManualFocus"]},{"name":"fun setNoiseCancellationEnabled(enable: Boolean)","description":"live.hms.video.sdk.HMSSDK.setNoiseCancellationEnabled","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","fun setNoiseCancellationEnabled(enable: Boolean)","live.hms.video.sdk.HMSSDK.setNoiseCancellationEnabled"]},{"name":"fun setPermissionsAccepted()","description":"live.hms.video.sdk.HMSSDK.setPermissionsAccepted","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/set-permissions-accepted.html","searchKeys":["setPermissionsAccepted","fun setPermissionsAccepted()","live.hms.video.sdk.HMSSDK.setPermissionsAccepted"]},{"name":"fun setPhoneCallMuteState(phoneCallState: PhoneCallState): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setPhoneCallMuteState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-phone-call-mute-state.html","searchKeys":["setPhoneCallMuteState","fun setPhoneCallMuteState(phoneCallState: PhoneCallState): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setPhoneCallMuteState"]},{"name":"fun setTapToFocusAt(viewX: Float, viewY: Float, viewWidth: Int, viewHeight: Int, scalingType: RendererCommon.ScalingType = ScalingType.SCALE_ASPECT_FILL)","description":"live.hms.video.media.capturers.camera.CameraControl.setTapToFocusAt","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-tap-to-focus-at.html","searchKeys":["setTapToFocusAt","fun setTapToFocusAt(viewX: Float, viewY: Float, viewWidth: Int, viewHeight: Int, scalingType: RendererCommon.ScalingType = ScalingType.SCALE_ASPECT_FILL)","live.hms.video.media.capturers.camera.CameraControl.setTapToFocusAt"]},{"name":"fun setTrackSettings(trackSettings: HMSTrackSettings): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setTrackSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-track-settings.html","searchKeys":["setTrackSettings","fun setTrackSettings(trackSettings: HMSTrackSettings): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setTrackSettings"]},{"name":"fun setUseHardwareAcousticEchoCanceler(useHardwareAcousticEchoCanceler: Boolean?): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setUseHardwareAcousticEchoCanceler","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/set-use-hardware-acoustic-echo-canceler.html","searchKeys":["setUseHardwareAcousticEchoCanceler","fun setUseHardwareAcousticEchoCanceler(useHardwareAcousticEchoCanceler: Boolean?): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.setUseHardwareAcousticEchoCanceler"]},{"name":"fun setVolume(value: Double)","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.setVolume","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/set-volume.html","searchKeys":["setVolume","fun setVolume(value: Double)","live.hms.video.media.tracks.HMSRemoteAudioTrack.setVolume"]},{"name":"fun setWebRtcLogLevel(level: HMSLogger.LogLevel): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.setWebRtcLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/set-web-rtc-log-level.html","searchKeys":["setWebRtcLogLevel","fun setWebRtcLogLevel(level: HMSLogger.LogLevel): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.setWebRtcLogLevel"]},{"name":"fun setWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","description":"live.hms.video.interactivity.HmsInteractivityCenter.setWhiteboardUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/set-whiteboard-update-listener.html","searchKeys":["setWhiteboardUpdateListener","fun setWhiteboardUpdateListener(whiteBoardUpdateListener: HMSWhiteboardUpdateListener?)","live.hms.video.interactivity.HmsInteractivityCenter.setWhiteboardUpdateListener"]},{"name":"fun setZoom(zoomValue: Float)","description":"live.hms.video.media.capturers.camera.CameraControl.setZoom","location":"lib/live.hms.video.media.capturers.camera/-camera-control/set-zoom.html","searchKeys":["setZoom","fun setZoom(zoomValue: Float)","live.hms.video.media.capturers.camera.CameraControl.setZoom"]},{"name":"fun shouldSample(currentTimeStamp: Double, force: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, force: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, forcePublish: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.shouldSample"]},{"name":"fun shouldSample(currentTimeStamp: Double, isForceSample: Boolean = false): Boolean","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.shouldSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/should-sample.html","searchKeys":["shouldSample","fun shouldSample(currentTimeStamp: Double, isForceSample: Boolean = false): Boolean","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.shouldSample"]},{"name":"fun shouldSkipPIIEvents(shouldSkip: Boolean): HMSSDK.Builder","description":"live.hms.video.sdk.HMSSDK.Builder.shouldSkipPIIEvents","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-builder/should-skip-p-i-i-events.html","searchKeys":["shouldSkipPIIEvents","fun shouldSkipPIIEvents(shouldSkip: Boolean): HMSSDK.Builder","live.hms.video.sdk.HMSSDK.Builder.shouldSkipPIIEvents"]},{"name":"fun simulcast(enabled: Boolean): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.simulcast","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/simulcast.html","searchKeys":["simulcast","fun simulcast(enabled: Boolean): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.simulcast"]},{"name":"fun startAudioshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, audioMixingMode: AudioMixingMode = AudioMixingMode.TALK_AND_MUSIC, audioShareNotification: Notification? = null)","description":"live.hms.video.sdk.HMSSDK.startAudioshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-audioshare.html","searchKeys":["startAudioshare","fun startAudioshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, audioMixingMode: AudioMixingMode = AudioMixingMode.TALK_AND_MUSIC, audioShareNotification: Notification? = null)","live.hms.video.sdk.HMSSDK.startAudioshare"]},{"name":"fun startCameraCheck(cameraFacing: HMSVideoTrackSettings.CameraFacing = HMSVideoTrackSettings.CameraFacing.FRONT, listener: HMSCameraCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startCameraCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-camera-check.html","searchKeys":["startCameraCheck","fun startCameraCheck(cameraFacing: HMSVideoTrackSettings.CameraFacing = HMSVideoTrackSettings.CameraFacing.FRONT, listener: HMSCameraCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startCameraCheck"]},{"name":"fun startConnectivityCheck(region: String?, listener: ConnectivityCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startConnectivityCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-connectivity-check.html","searchKeys":["startConnectivityCheck","fun startConnectivityCheck(region: String?, listener: ConnectivityCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startConnectivityCheck"]},{"name":"fun startHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startHLSStreaming","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-h-l-s-streaming.html","searchKeys":["startHLSStreaming","fun startHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startHLSStreaming"]},{"name":"fun startMicCheck(context: Context, listener: HMSAudioDeviceCheckListener)","description":"live.hms.video.diagnostics.HMSDiagnostics.startMicCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-mic-check.html","searchKeys":["startMicCheck","fun startMicCheck(context: Context, listener: HMSAudioDeviceCheckListener)","live.hms.video.diagnostics.HMSDiagnostics.startMicCheck"]},{"name":"fun startRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startRealTimeTranscription","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-real-time-transcription.html","searchKeys":["startRealTimeTranscription","fun startRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startRealTimeTranscription"]},{"name":"fun startRtmpOrRecording(config: HMSRecordingConfig, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.startRtmpOrRecording","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-rtmp-or-recording.html","searchKeys":["startRtmpOrRecording","fun startRtmpOrRecording(config: HMSRecordingConfig, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.startRtmpOrRecording"]},{"name":"fun startScreenCapture(mediaProjectionPermissionResultData: Intent?, hmsVideoTrackSettings: HMSVideoTrackSettings, source: VideoSource)","description":"live.hms.video.services.HMSScreenCaptureService.startScreenCapture","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/start-screen-capture.html","searchKeys":["startScreenCapture","fun startScreenCapture(mediaProjectionPermissionResultData: Intent?, hmsVideoTrackSettings: HMSVideoTrackSettings, source: VideoSource)","live.hms.video.services.HMSScreenCaptureService.startScreenCapture"]},{"name":"fun startScreenshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, screenShareNotification: Notification? = null)","description":"live.hms.video.sdk.HMSSDK.startScreenshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/start-screenshare.html","searchKeys":["startScreenshare","fun startScreenshare(hmsActionResultListener: HMSActionResultListener, mediaProjectionPermissionResultData: Intent?, screenShareNotification: Notification? = null)","live.hms.video.sdk.HMSSDK.startScreenshare"]},{"name":"fun startSpeakerCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.startSpeakerCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/start-speaker-check.html","searchKeys":["startSpeakerCheck","fun startSpeakerCheck()","live.hms.video.diagnostics.HMSDiagnostics.startSpeakerCheck"]},{"name":"fun startWhiteboard(title: String, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.startWhiteboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/start-whiteboard.html","searchKeys":["startWhiteboard","fun startWhiteboard(title: String, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.startWhiteboard"]},{"name":"fun staticFileWriterStart(context: Context, frameworkInfo: FrameworkInfo): String?","description":"live.hms.video.utils.LogUtils.staticFileWriterStart","location":"lib/live.hms.video.utils/-log-utils/static-file-writer-start.html","searchKeys":["staticFileWriterStart","fun staticFileWriterStart(context: Context, frameworkInfo: FrameworkInfo): String?","live.hms.video.utils.LogUtils.staticFileWriterStart"]},{"name":"fun stop()","description":"live.hms.video.media.streams.HMSMediaStream.stop","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/stop.html","searchKeys":["stop","fun stop()","live.hms.video.media.streams.HMSMediaStream.stop"]},{"name":"fun stop(poll: HmsPoll, completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.stop","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/stop.html","searchKeys":["stop","fun stop(poll: HmsPoll, completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.stop"]},{"name":"fun stopAudioCaptuer()","description":"live.hms.video.services.HMSScreenCaptureService.stopAudioCaptuer","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/stop-audio-captuer.html","searchKeys":["stopAudioCaptuer","fun stopAudioCaptuer()","live.hms.video.services.HMSScreenCaptureService.stopAudioCaptuer"]},{"name":"fun stopAudioshare(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopAudioshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-audioshare.html","searchKeys":["stopAudioshare","fun stopAudioshare(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopAudioshare"]},{"name":"fun stopCameraCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopCameraCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-camera-check.html","searchKeys":["stopCameraCheck","fun stopCameraCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopCameraCheck"]},{"name":"fun stopConnectivityCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopConnectivityCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-connectivity-check.html","searchKeys":["stopConnectivityCheck","fun stopConnectivityCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopConnectivityCheck"]},{"name":"fun stopHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopHLSStreaming","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-h-l-s-streaming.html","searchKeys":["stopHLSStreaming","fun stopHLSStreaming(config: HMSHLSConfig? = null, hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopHLSStreaming"]},{"name":"fun stopMicCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopMicCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-mic-check.html","searchKeys":["stopMicCheck","fun stopMicCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopMicCheck"]},{"name":"fun stopRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopRealTimeTranscription","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-real-time-transcription.html","searchKeys":["stopRealTimeTranscription","fun stopRealTimeTranscription(mode: TranscriptionsMode, listener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopRealTimeTranscription"]},{"name":"fun stopRtmpAndRecording(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopRtmpAndRecording","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-rtmp-and-recording.html","searchKeys":["stopRtmpAndRecording","fun stopRtmpAndRecording(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopRtmpAndRecording"]},{"name":"fun stopScreenCapturer()","description":"live.hms.video.services.HMSScreenCaptureService.stopScreenCapturer","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/stop-screen-capturer.html","searchKeys":["stopScreenCapturer","fun stopScreenCapturer()","live.hms.video.services.HMSScreenCaptureService.stopScreenCapturer"]},{"name":"fun stopScreenshare(hmsActionResultListener: HMSActionResultListener)","description":"live.hms.video.sdk.HMSSDK.stopScreenshare","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/stop-screenshare.html","searchKeys":["stopScreenshare","fun stopScreenshare(hmsActionResultListener: HMSActionResultListener)","live.hms.video.sdk.HMSSDK.stopScreenshare"]},{"name":"fun stopSpeakerCheck()","description":"live.hms.video.diagnostics.HMSDiagnostics.stopSpeakerCheck","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/stop-speaker-check.html","searchKeys":["stopSpeakerCheck","fun stopSpeakerCheck()","live.hms.video.diagnostics.HMSDiagnostics.stopSpeakerCheck"]},{"name":"fun stopWhiteboard(completion: HMSActionResultListener)","description":"live.hms.video.interactivity.HmsInteractivityCenter.stopWhiteboard","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/stop-whiteboard.html","searchKeys":["stopWhiteboard","fun stopWhiteboard(completion: HMSActionResultListener)","live.hms.video.interactivity.HmsInteractivityCenter.stopWhiteboard"]},{"name":"fun switchAudioOutput(audioDevice: HMSAudioManager.AudioDevice)","description":"live.hms.video.sdk.HMSSDK.switchAudioOutput","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/switch-audio-output.html","searchKeys":["switchAudioOutput","fun switchAudioOutput(audioDevice: HMSAudioManager.AudioDevice)","live.hms.video.sdk.HMSSDK.switchAudioOutput"]},{"name":"fun switchCamera(deviceId: String, onAction: HMSActionResultListener?): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(deviceId: String, onAction: HMSActionResultListener?): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun switchCamera(face: HMSVideoTrackSettings.CameraFacing, onAction: HMSActionResultListener? = null): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(face: HMSVideoTrackSettings.CameraFacing, onAction: HMSActionResultListener? = null): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun switchCamera(onAction: HMSActionResultListener? = null): Job","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/switch-camera.html","searchKeys":["switchCamera","fun switchCamera(onAction: HMSActionResultListener? = null): Job","live.hms.video.media.tracks.HMSLocalVideoTrack.switchCamera"]},{"name":"fun toHMSMapping(signalDeviceMapping: AudioManagerUtil.AudioDevice): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.toHMSMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/to-h-m-s-mapping.html","searchKeys":["toHMSMapping","fun toHMSMapping(signalDeviceMapping: AudioManagerUtil.AudioDevice): HMSAudioManager.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.toHMSMapping"]},{"name":"fun toHMSRecordingState(): HMSRecordingState","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.toHMSRecordingState","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/to-h-m-s-recording-state.html","searchKeys":["toHMSRecordingState","fun toHMSRecordingState(): HMSRecordingState","live.hms.video.sdk.peerlist.models.BeamRecordingStates.toHMSRecordingState"]},{"name":"fun toHMSStreamingState(): HMSStreamingState","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.toHMSStreamingState","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/to-h-m-s-streaming-state.html","searchKeys":["toHMSStreamingState","fun toHMSStreamingState(): HMSStreamingState","live.hms.video.sdk.peerlist.models.BeamStreamingStates.toHMSStreamingState"]},{"name":"fun toHashMap(value: String): HashMap","description":"live.hms.video.database.converters.TypeConverter.Companion.toHashMap","location":"lib/live.hms.video.database.converters/-type-converter/-companion/to-hash-map.html","searchKeys":["toHashMap","fun toHashMap(value: String): HashMap","live.hms.video.database.converters.TypeConverter.Companion.toHashMap"]},{"name":"fun toSignalMapping(hmsDeviceMapping: HMSAudioManager.AudioDevice): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioDeviceMapping.toSignalMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/to-signal-mapping.html","searchKeys":["toSignalMapping","fun toSignalMapping(hmsDeviceMapping: HMSAudioManager.AudioDevice): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioDeviceMapping.toSignalMapping"]},{"name":"fun updateTemplateId(template: String)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateTemplateId","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-template-id.html","searchKeys":["updateTemplateId","fun updateTemplateId(template: String)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateTemplateId"]},{"name":"fun updateWithPeer(hmsPeer: HMSPeer?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithPeer","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-peer.html","searchKeys":["updateWithPeer","fun updateWithPeer(hmsPeer: HMSPeer?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithPeer"]},{"name":"fun updateWithRoom(hmsRoom: HMSRoom?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithRoom","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-room.html","searchKeys":["updateWithRoom","fun updateWithRoom(hmsRoom: HMSRoom?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithRoom"]},{"name":"fun updateWithToken(token: String?)","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithToken","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/update-with-token.html","searchKeys":["updateWithToken","fun updateWithToken(token: String?)","live.hms.video.sdk.OfflineAnalyticsPeerInfo.updateWithToken"]},{"name":"fun v(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.v","location":"lib/live.hms.video.utils/-h-m-s-logger/v.html","searchKeys":["v","fun v(tag: String, message: String)","live.hms.video.utils.HMSLogger.v"]},{"name":"fun valueOf(value: String): AgentType","description":"live.hms.video.events.AgentType.valueOf","location":"lib/live.hms.video.events/-agent-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AgentType","live.hms.video.events.AgentType.valueOf"]},{"name":"fun valueOf(value: String): AudioChangeEvent","description":"live.hms.video.audio.AudioChangeEvent.valueOf","location":"lib/live.hms.video.audio/-audio-change-event/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioChangeEvent","live.hms.video.audio.AudioChangeEvent.valueOf"]},{"name":"fun valueOf(value: String): AudioManagerUtil.AudioDevice","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.valueOf","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioManagerUtil.AudioDevice","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.valueOf"]},{"name":"fun valueOf(value: String): AudioMixingMode","description":"live.hms.video.sdk.models.enums.AudioMixingMode.valueOf","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): AudioMixingMode","live.hms.video.sdk.models.enums.AudioMixingMode.valueOf"]},{"name":"fun valueOf(value: String): BeamRecordingStates","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.valueOf","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BeamRecordingStates","live.hms.video.sdk.peerlist.models.BeamRecordingStates.valueOf"]},{"name":"fun valueOf(value: String): BeamStreamingStates","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.valueOf","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BeamStreamingStates","live.hms.video.sdk.peerlist.models.BeamStreamingStates.valueOf"]},{"name":"fun valueOf(value: String): BluetoothErrorType","description":"live.hms.video.audio.BluetoothErrorType.valueOf","location":"lib/live.hms.video.audio/-bluetooth-error-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): BluetoothErrorType","live.hms.video.audio.BluetoothErrorType.valueOf"]},{"name":"fun valueOf(value: String): ConnectivityState","description":"live.hms.video.diagnostics.models.ConnectivityState.valueOf","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): ConnectivityState","live.hms.video.diagnostics.models.ConnectivityState.valueOf"]},{"name":"fun valueOf(value: String): DataChannelRequestMethod","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.valueOf","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): DataChannelRequestMethod","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.valueOf"]},{"name":"fun valueOf(value: String): DegradationPreference","description":"live.hms.video.sdk.models.DegradationPreference.valueOf","location":"lib/live.hms.video.sdk.models/-degradation-preference/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): DegradationPreference","live.hms.video.sdk.models.DegradationPreference.valueOf"]},{"name":"fun valueOf(value: String): HMSAnalyticsEventLevel","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAnalyticsEventLevel","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioCodec","description":"live.hms.video.media.codec.HMSAudioCodec.valueOf","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioCodec","live.hms.video.media.codec.HMSAudioCodec.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.valueOf","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManager.AudioDevice.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioManager.AudioManagerState","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.valueOf","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioManager.AudioManagerState","live.hms.video.audio.HMSAudioManager.AudioManagerState.valueOf"]},{"name":"fun valueOf(value: String): HMSAudioTrackSettings.HMSAudioMode","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSAudioTrackSettings.HMSAudioMode","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.valueOf"]},{"name":"fun valueOf(value: String): HMSHLSPlaylistType","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.valueOf","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSHLSPlaylistType","live.hms.video.sdk.models.HMSHLSPlaylistType.valueOf"]},{"name":"fun valueOf(value: String): HMSLayer","description":"live.hms.video.media.settings.HMSLayer.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-layer/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLayer","live.hms.video.media.settings.HMSLayer.valueOf"]},{"name":"fun valueOf(value: String): HMSLogger.LogFiles","description":"live.hms.video.utils.HMSLogger.LogFiles.valueOf","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLogger.LogFiles","live.hms.video.utils.HMSLogger.LogFiles.valueOf"]},{"name":"fun valueOf(value: String): HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.LogLevel.valueOf","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.LogLevel.valueOf"]},{"name":"fun valueOf(value: String): HMSMessageRecipientType","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSMessageRecipientType","live.hms.video.sdk.models.enums.HMSMessageRecipientType.valueOf"]},{"name":"fun valueOf(value: String): HMSMode","description":"live.hms.video.sdk.models.enums.HMSMode.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSMode","live.hms.video.sdk.models.enums.HMSMode.valueOf"]},{"name":"fun valueOf(value: String): HMSPeerType","description":"live.hms.video.sdk.models.HMSPeerType.valueOf","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPeerType","live.hms.video.sdk.models.HMSPeerType.valueOf"]},{"name":"fun valueOf(value: String): HMSPeerUpdate","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPeerUpdate","live.hms.video.sdk.models.enums.HMSPeerUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSPollQuestionType","description":"live.hms.video.polls.models.question.HMSPollQuestionType.valueOf","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPollQuestionType","live.hms.video.polls.models.question.HMSPollQuestionType.valueOf"]},{"name":"fun valueOf(value: String): HMSPollUpdateType","description":"live.hms.video.polls.models.HMSPollUpdateType.valueOf","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSPollUpdateType","live.hms.video.polls.models.HMSPollUpdateType.valueOf"]},{"name":"fun valueOf(value: String): HMSRecordingState","description":"live.hms.video.sdk.models.enums.HMSRecordingState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSRecordingState","live.hms.video.sdk.models.enums.HMSRecordingState.valueOf"]},{"name":"fun valueOf(value: String): HMSRoomUpdate","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSRoomUpdate","live.hms.video.sdk.models.enums.HMSRoomUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSStreamingState","description":"live.hms.video.sdk.models.enums.HMSStreamingState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSStreamingState","live.hms.video.sdk.models.enums.HMSStreamingState.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackSettings.InitState","live.hms.video.media.settings.HMSTrackSettings.InitState.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackType","description":"live.hms.video.media.tracks.HMSTrackType.valueOf","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackType","live.hms.video.media.tracks.HMSTrackType.valueOf"]},{"name":"fun valueOf(value: String): HMSTrackUpdate","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.valueOf","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSTrackUpdate","live.hms.video.sdk.models.enums.HMSTrackUpdate.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoCodec","description":"live.hms.video.media.codec.HMSVideoCodec.valueOf","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoCodec","live.hms.video.media.codec.HMSVideoCodec.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoPluginType","description":"live.hms.video.plugin.video.HMSVideoPluginType.valueOf","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoPluginType","live.hms.video.plugin.video.HMSVideoPluginType.valueOf"]},{"name":"fun valueOf(value: String): HMSVideoTrackSettings.CameraFacing","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.valueOf","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HMSVideoTrackSettings.CameraFacing","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.valueOf"]},{"name":"fun valueOf(value: String): HmsPollCategory","description":"live.hms.video.polls.models.HmsPollCategory.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-category/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollCategory","live.hms.video.polls.models.HmsPollCategory.valueOf"]},{"name":"fun valueOf(value: String): HmsPollState","description":"live.hms.video.polls.models.HmsPollState.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollState","live.hms.video.polls.models.HmsPollState.valueOf"]},{"name":"fun valueOf(value: String): HmsPollUserTrackingMode","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.valueOf","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsPollUserTrackingMode","live.hms.video.polls.models.HmsPollUserTrackingMode.valueOf"]},{"name":"fun valueOf(value: String): Layer","description":"live.hms.video.sdk.models.Layer.valueOf","location":"lib/live.hms.video.sdk.models/-layer/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): Layer","live.hms.video.sdk.models.Layer.valueOf"]},{"name":"fun valueOf(value: String): QualityLimitationReason","description":"live.hms.video.connection.degredation.QualityLimitationReason.valueOf","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): QualityLimitationReason","live.hms.video.connection.degredation.QualityLimitationReason.valueOf"]},{"name":"fun valueOf(value: String): RetrySchedulerState","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.valueOf","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): RetrySchedulerState","live.hms.video.sdk.models.enums.RetrySchedulerState.valueOf"]},{"name":"fun valueOf(value: String): State","description":"live.hms.video.whiteboard.State.valueOf","location":"lib/live.hms.video.whiteboard/-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): State","live.hms.video.whiteboard.State.valueOf"]},{"name":"fun valueOf(value: String): TranscriptionState","description":"live.hms.video.sdk.models.TranscriptionState.valueOf","location":"lib/live.hms.video.sdk.models/-transcription-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): TranscriptionState","live.hms.video.sdk.models.TranscriptionState.valueOf"]},{"name":"fun valueOf(value: String): TranscriptionsMode","description":"live.hms.video.sdk.models.TranscriptionsMode.valueOf","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): TranscriptionsMode","live.hms.video.sdk.models.TranscriptionsMode.valueOf"]},{"name":"fun valueOf(value: String): VideoPluginMode","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.valueOf","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): VideoPluginMode","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.valueOf"]},{"name":"fun values(): Array","description":"live.hms.video.events.AgentType.values","location":"lib/live.hms.video.events/-agent-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.events.AgentType.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.AudioChangeEvent.values","location":"lib/live.hms.video.audio/-audio-change-event/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.AudioChangeEvent.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.values","location":"lib/live.hms.video.audio.manager/-audio-manager-util/-audio-device/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.manager.AudioManagerUtil.AudioDevice.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.AudioMixingMode.values","location":"lib/live.hms.video.sdk.models.enums/-audio-mixing-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.AudioMixingMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.values","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.peerlist.models.BeamRecordingStates.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.values","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.peerlist.models.BeamStreamingStates.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.BluetoothErrorType.values","location":"lib/live.hms.video.audio/-bluetooth-error-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.BluetoothErrorType.values"]},{"name":"fun values(): Array","description":"live.hms.video.diagnostics.models.ConnectivityState.values","location":"lib/live.hms.video.diagnostics.models/-connectivity-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.diagnostics.models.ConnectivityState.values"]},{"name":"fun values(): Array","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.values","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/values.html","searchKeys":["values","fun values(): Array","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.DegradationPreference.values","location":"lib/live.hms.video.sdk.models/-degradation-preference/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.DegradationPreference.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-analytics-event-level/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSAnalyticsEventLevel.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.codec.HMSAudioCodec.values","location":"lib/live.hms.video.media.codec/-h-m-s-audio-codec/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.codec.HMSAudioCodec.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.HMSAudioManager.AudioDevice.values","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-device/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.HMSAudioManager.AudioDevice.values"]},{"name":"fun values(): Array","description":"live.hms.video.audio.HMSAudioManager.AudioManagerState.values","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.audio.HMSAudioManager.AudioManagerState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.values","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-h-m-s-audio-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSAudioTrackSettings.HMSAudioMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.values","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.HMSHLSPlaylistType.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSLayer.values","location":"lib/live.hms.video.media.settings/-h-m-s-layer/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSLayer.values"]},{"name":"fun values(): Array","description":"live.hms.video.utils.HMSLogger.LogFiles.values","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-files/values.html","searchKeys":["values","fun values(): Array","live.hms.video.utils.HMSLogger.LogFiles.values"]},{"name":"fun values(): Array","description":"live.hms.video.utils.HMSLogger.LogLevel.values","location":"lib/live.hms.video.utils/-h-m-s-logger/-log-level/values.html","searchKeys":["values","fun values(): Array","live.hms.video.utils.HMSLogger.LogLevel.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSMessageRecipientType.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-recipient-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSMessageRecipientType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSMode.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.HMSPeerType.values","location":"lib/live.hms.video.sdk.models/-h-m-s-peer-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.HMSPeerType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSPeerUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-peer-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSPeerUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.question.HMSPollQuestionType.values","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.question.HMSPollQuestionType.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HMSPollUpdateType.values","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HMSPollUpdateType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSRecordingState.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-recording-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSRecordingState.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSRoomUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-room-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSRoomUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSStreamingState.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-streaming-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSStreamingState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSTrackSettings.InitState.values","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-init-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSTrackSettings.InitState.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.tracks.HMSTrackType.values","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.tracks.HMSTrackType.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.HMSTrackUpdate.values","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-track-update/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.HMSTrackUpdate.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.codec.HMSVideoCodec.values","location":"lib/live.hms.video.media.codec/-h-m-s-video-codec/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.codec.HMSVideoCodec.values"]},{"name":"fun values(): Array","description":"live.hms.video.plugin.video.HMSVideoPluginType.values","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin-type/values.html","searchKeys":["values","fun values(): Array","live.hms.video.plugin.video.HMSVideoPluginType.values"]},{"name":"fun values(): Array","description":"live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.values","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/-camera-facing/values.html","searchKeys":["values","fun values(): Array","live.hms.video.media.settings.HMSVideoTrackSettings.CameraFacing.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollCategory.values","location":"lib/live.hms.video.polls.models/-hms-poll-category/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollCategory.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollState.values","location":"lib/live.hms.video.polls.models/-hms-poll-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollState.values"]},{"name":"fun values(): Array","description":"live.hms.video.polls.models.HmsPollUserTrackingMode.values","location":"lib/live.hms.video.polls.models/-hms-poll-user-tracking-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.polls.models.HmsPollUserTrackingMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.Layer.values","location":"lib/live.hms.video.sdk.models/-layer/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.Layer.values"]},{"name":"fun values(): Array","description":"live.hms.video.connection.degredation.QualityLimitationReason.values","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reason/values.html","searchKeys":["values","fun values(): Array","live.hms.video.connection.degredation.QualityLimitationReason.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.values","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.enums.RetrySchedulerState.values"]},{"name":"fun values(): Array","description":"live.hms.video.whiteboard.State.values","location":"lib/live.hms.video.whiteboard/-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.whiteboard.State.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.TranscriptionState.values","location":"lib/live.hms.video.sdk.models/-transcription-state/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.TranscriptionState.values"]},{"name":"fun values(): Array","description":"live.hms.video.sdk.models.TranscriptionsMode.values","location":"lib/live.hms.video.sdk.models/-transcriptions-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.sdk.models.TranscriptionsMode.values"]},{"name":"fun values(): Array","description":"live.hms.video.plugin.video.virtualbackground.VideoPluginMode.values","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-plugin-mode/values.html","searchKeys":["values","fun values(): Array","live.hms.video.plugin.video.virtualbackground.VideoPluginMode.values"]},{"name":"fun video(video: HMSVideoTrackSettings?): HMSTrackSettings.Builder","description":"live.hms.video.media.settings.HMSTrackSettings.Builder.video","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/-builder/video.html","searchKeys":["video","fun video(video: HMSVideoTrackSettings?): HMSTrackSettings.Builder","live.hms.video.media.settings.HMSTrackSettings.Builder.video"]},{"name":"fun volume(volume: Double): HMSAudioTrackSettings.Builder","description":"live.hms.video.media.settings.HMSAudioTrackSettings.Builder.volume","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/-builder/volume.html","searchKeys":["volume","fun volume(volume: Double): HMSAudioTrackSettings.Builder","live.hms.video.media.settings.HMSAudioTrackSettings.Builder.volume"]},{"name":"fun w(tag: String, message: String)","description":"live.hms.video.utils.HMSLogger.w","location":"lib/live.hms.video.utils/-h-m-s-logger/w.html","searchKeys":["w","fun w(tag: String, message: String)","live.hms.video.utils.HMSLogger.w"]},{"name":"fun w(tag: String, message: String, tr: Throwable)","description":"live.hms.video.utils.HMSLogger.w","location":"lib/live.hms.video.utils/-h-m-s-logger/w.html","searchKeys":["w","fun w(tag: String, message: String, tr: Throwable)","live.hms.video.utils.HMSLogger.w"]},{"name":"fun withAnonymous(anonymous: Boolean): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withAnonymous","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-anonymous.html","searchKeys":["withAnonymous","fun withAnonymous(anonymous: Boolean): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withAnonymous"]},{"name":"fun withAnswerHidden(answerHidden: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withAnswerHidden","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-answer-hidden.html","searchKeys":["withAnswerHidden","fun withAnswerHidden(answerHidden: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withAnswerHidden"]},{"name":"fun withCanBeSkipped(canBeSkipped: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanBeSkipped","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-can-be-skipped.html","searchKeys":["withCanBeSkipped","fun withCanBeSkipped(canBeSkipped: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanBeSkipped"]},{"name":"fun withCanChangeResponse(canChangeResponse: Boolean): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanChangeResponse","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-can-change-response.html","searchKeys":["withCanChangeResponse","fun withCanChangeResponse(canChangeResponse: Boolean): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withCanChangeResponse"]},{"name":"fun withCategory(category: HmsPollCategory): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withCategory","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-category.html","searchKeys":["withCategory","fun withCategory(category: HmsPollCategory): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withCategory"]},{"name":"fun withDuration(duration: Long): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withDuration","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-duration.html","searchKeys":["withDuration","fun withDuration(duration: Long): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withDuration"]},{"name":"fun withDuration(duration: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withDuration","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-duration.html","searchKeys":["withDuration","fun withDuration(duration: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withDuration"]},{"name":"fun withMaxLength(maxLength: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMaxLength","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-max-length.html","searchKeys":["withMaxLength","fun withMaxLength(maxLength: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMaxLength"]},{"name":"fun withMinLength(minLength: Long): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMinLength","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-min-length.html","searchKeys":["withMinLength","fun withMinLength(minLength: Long): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withMinLength"]},{"name":"fun withPollId(pollId: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withPollId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-poll-id.html","searchKeys":["withPollId","fun withPollId(pollId: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withPollId"]},{"name":"fun withRolesThatCanViewResponses(rolesThatCanViewResponses: List?): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanViewResponses","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-roles-that-can-view-responses.html","searchKeys":["withRolesThatCanViewResponses","fun withRolesThatCanViewResponses(rolesThatCanViewResponses: List?): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanViewResponses"]},{"name":"fun withRolesThatCanVote(rolesThatCanVote: List?): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanVote","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-roles-that-can-vote.html","searchKeys":["withRolesThatCanVote","fun withRolesThatCanVote(rolesThatCanVote: List?): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withRolesThatCanVote"]},{"name":"fun withTitle(title: String): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withTitle","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-title.html","searchKeys":["withTitle","fun withTitle(title: String): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withTitle"]},{"name":"fun withTitle(title: String): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withTitle","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-title.html","searchKeys":["withTitle","fun withTitle(title: String): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withTitle"]},{"name":"fun withUserTrackingMode(userTrackingMode: HmsPollUserTrackingMode): HMSPollBuilder.Builder","description":"live.hms.video.polls.HMSPollBuilder.Builder.withUserTrackingMode","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/with-user-tracking-mode.html","searchKeys":["withUserTrackingMode","fun withUserTrackingMode(userTrackingMode: HmsPollUserTrackingMode): HMSPollBuilder.Builder","live.hms.video.polls.HMSPollBuilder.Builder.withUserTrackingMode"]},{"name":"fun withWeight(weight: Int): HMSPollQuestionBuilder.Builder","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.withWeight","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/with-weight.html","searchKeys":["withWeight","fun withWeight(weight: Int): HMSPollQuestionBuilder.Builder","live.hms.video.polls.HMSPollQuestionBuilder.Builder.withWeight"]},{"name":"fun yuvToRgb(image: Image, output: Bitmap)","description":"live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.yuvToRgb","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-to-rgb-converter/yuv-to-rgb.html","searchKeys":["yuvToRgb","fun yuvToRgb(image: Image, output: Bitmap)","live.hms.video.media.capturers.camera.utils.YuvToRgbConverter.yuvToRgb"]},{"name":"high","description":"live.hms.video.sdk.models.Layer.high","location":"lib/live.hms.video.sdk.models/-layer/high/index.html","searchKeys":["high","high","live.hms.video.sdk.models.Layer.high"]},{"name":"initialised","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.initialised","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/initialised/index.html","searchKeys":["initialised","initialised","live.hms.video.sdk.peerlist.models.BeamRecordingStates.initialised"]},{"name":"initialised","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.initialised","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/initialised/index.html","searchKeys":["initialised","initialised","live.hms.video.sdk.peerlist.models.BeamStreamingStates.initialised"]},{"name":"inline fun traceTime(name: String, block: () -> T)","description":"live.hms.video.utils.traceTime","location":"lib/live.hms.video.utils/trace-time.html","searchKeys":["traceTime","inline fun traceTime(name: String, block: () -> T)","live.hms.video.utils.traceTime"]},{"name":"inner class LocalBinder : Binder","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/index.html","searchKeys":["LocalBinder","inner class LocalBinder : Binder","live.hms.video.services.HMSScreenCaptureService.LocalBinder"]},{"name":"interface AudioManagerDeviceChangeListener","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/index.html","searchKeys":["AudioManagerDeviceChangeListener","interface AudioManagerDeviceChangeListener","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener"]},{"name":"interface AudioManagerFocusChangeCallbacks","description":"live.hms.video.audio.AudioManagerFocusChangeCallbacks","location":"lib/live.hms.video.audio/-audio-manager-focus-change-callbacks/index.html","searchKeys":["AudioManagerFocusChangeCallbacks","interface AudioManagerFocusChangeCallbacks","live.hms.video.audio.AudioManagerFocusChangeCallbacks"]},{"name":"interface BaseSample","description":"live.hms.video.connection.stats.clientside.model.BaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-base-sample/index.html","searchKeys":["BaseSample","interface BaseSample","live.hms.video.connection.stats.clientside.model.BaseSample"]},{"name":"interface ConnectivityCheckListener","description":"live.hms.video.diagnostics.ConnectivityCheckListener","location":"lib/live.hms.video.diagnostics/-connectivity-check-listener/index.html","searchKeys":["ConnectivityCheckListener","interface ConnectivityCheckListener","live.hms.video.diagnostics.ConnectivityCheckListener"]},{"name":"interface HMSActionResultListener : IErrorListener","description":"live.hms.video.sdk.HMSActionResultListener","location":"lib/live.hms.video.sdk/-h-m-s-action-result-listener/index.html","searchKeys":["HMSActionResultListener","interface HMSActionResultListener : IErrorListener","live.hms.video.sdk.HMSActionResultListener"]},{"name":"interface HMSAddSinkResultListener : IErrorListener","description":"live.hms.video.sdk.HMSAddSinkResultListener","location":"lib/live.hms.video.sdk/-h-m-s-add-sink-result-listener/index.html","searchKeys":["HMSAddSinkResultListener","interface HMSAddSinkResultListener : IErrorListener","live.hms.video.sdk.HMSAddSinkResultListener"]},{"name":"interface HMSAudioDeviceCheckListener","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/index.html","searchKeys":["HMSAudioDeviceCheckListener","interface HMSAudioDeviceCheckListener","live.hms.video.diagnostics.HMSAudioDeviceCheckListener"]},{"name":"interface HMSAudioListener","description":"live.hms.video.sdk.HMSAudioListener","location":"lib/live.hms.video.sdk/-h-m-s-audio-listener/index.html","searchKeys":["HMSAudioListener","interface HMSAudioListener","live.hms.video.sdk.HMSAudioListener"]},{"name":"interface HMSAudioManager","description":"live.hms.video.audio.HMSAudioManager","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/index.html","searchKeys":["HMSAudioManager","interface HMSAudioManager","live.hms.video.audio.HMSAudioManager"]},{"name":"interface HMSBitmapUpdateListener","description":"live.hms.video.plugin.video.utils.HMSBitmapUpdateListener","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-update-listener/index.html","searchKeys":["HMSBitmapUpdateListener","interface HMSBitmapUpdateListener","live.hms.video.plugin.video.utils.HMSBitmapUpdateListener"]},{"name":"interface HMSCameraCheckListener","description":"live.hms.video.diagnostics.HMSCameraCheckListener","location":"lib/live.hms.video.diagnostics/-h-m-s-camera-check-listener/index.html","searchKeys":["HMSCameraCheckListener","interface HMSCameraCheckListener","live.hms.video.diagnostics.HMSCameraCheckListener"]},{"name":"interface HMSCapturer","description":"live.hms.video.media.capturers.HMSCapturer","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/index.html","searchKeys":["HMSCapturer","interface HMSCapturer","live.hms.video.media.capturers.HMSCapturer"]},{"name":"interface HMSDataChannelRequestParams","description":"live.hms.video.media.streams.models.HMSDataChannelRequestParams","location":"lib/live.hms.video.media.streams.models/-h-m-s-data-channel-request-params/index.html","searchKeys":["HMSDataChannelRequestParams","interface HMSDataChannelRequestParams","live.hms.video.media.streams.models.HMSDataChannelRequestParams"]},{"name":"interface HMSDataChannelResponse","description":"live.hms.video.media.streams.models.HMSDataChannelResponse","location":"lib/live.hms.video.media.streams.models/-h-m-s-data-channel-response/index.html","searchKeys":["HMSDataChannelResponse","interface HMSDataChannelResponse","live.hms.video.media.streams.models.HMSDataChannelResponse"]},{"name":"interface HMSKeyChangeListener","description":"live.hms.video.sessionstore.HMSKeyChangeListener","location":"lib/live.hms.video.sessionstore/-h-m-s-key-change-listener/index.html","searchKeys":["HMSKeyChangeListener","interface HMSKeyChangeListener","live.hms.video.sessionstore.HMSKeyChangeListener"]},{"name":"interface HMSLayoutListener : IErrorListener","description":"live.hms.video.signal.init.HMSLayoutListener","location":"lib/live.hms.video.signal.init/-h-m-s-layout-listener/index.html","searchKeys":["HMSLayoutListener","interface HMSLayoutListener : IErrorListener","live.hms.video.signal.init.HMSLayoutListener"]},{"name":"interface HMSLocalTrack","description":"live.hms.video.media.tracks.HMSLocalTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-local-track/index.html","searchKeys":["HMSLocalTrack","interface HMSLocalTrack","live.hms.video.media.tracks.HMSLocalTrack"]},{"name":"interface HMSMessageResultListener : IErrorListener","description":"live.hms.video.sdk.HMSMessageResultListener","location":"lib/live.hms.video.sdk/-h-m-s-message-result-listener/index.html","searchKeys":["HMSMessageResultListener","interface HMSMessageResultListener : IErrorListener","live.hms.video.sdk.HMSMessageResultListener"]},{"name":"interface HMSNetworkObserver","description":"live.hms.video.connection.stats.quality.HMSNetworkObserver","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-observer/index.html","searchKeys":["HMSNetworkObserver","interface HMSNetworkObserver","live.hms.video.connection.stats.quality.HMSNetworkObserver"]},{"name":"interface HMSPluginResultListener","description":"live.hms.video.sdk.HMSPluginResultListener","location":"lib/live.hms.video.sdk/-h-m-s-plugin-result-listener/index.html","searchKeys":["HMSPluginResultListener","interface HMSPluginResultListener","live.hms.video.sdk.HMSPluginResultListener"]},{"name":"interface HMSPreviewListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.HMSPreviewListener","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/index.html","searchKeys":["HMSPreviewListener","interface HMSPreviewListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.HMSPreviewListener"]},{"name":"interface HMSRemoteTrack","description":"live.hms.video.media.tracks.HMSRemoteTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-track/index.html","searchKeys":["HMSRemoteTrack","interface HMSRemoteTrack","live.hms.video.media.tracks.HMSRemoteTrack"]},{"name":"interface HMSSessionMetadataListener : IErrorListener","description":"live.hms.video.sdk.HMSSessionMetadataListener","location":"lib/live.hms.video.sdk/-h-m-s-session-metadata-listener/index.html","searchKeys":["HMSSessionMetadataListener","interface HMSSessionMetadataListener : IErrorListener","live.hms.video.sdk.HMSSessionMetadataListener"]},{"name":"interface HMSStatsObserver","description":"live.hms.video.connection.stats.HMSStatsObserver","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/index.html","searchKeys":["HMSStatsObserver","interface HMSStatsObserver","live.hms.video.connection.stats.HMSStatsObserver"]},{"name":"interface HMSTokenListener : IErrorListener","description":"live.hms.video.signal.init.HMSTokenListener","location":"lib/live.hms.video.signal.init/-h-m-s-token-listener/index.html","searchKeys":["HMSTokenListener","interface HMSTokenListener : IErrorListener","live.hms.video.signal.init.HMSTokenListener"]},{"name":"interface HMSUpdateListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.HMSUpdateListener","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/index.html","searchKeys":["HMSUpdateListener","interface HMSUpdateListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.HMSUpdateListener"]},{"name":"interface HMSVideoPlugin","description":"live.hms.video.plugin.video.HMSVideoPlugin","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/index.html","searchKeys":["HMSVideoPlugin","interface HMSVideoPlugin","live.hms.video.plugin.video.HMSVideoPlugin"]},{"name":"interface HMSWhiteboardUpdateListener","description":"live.hms.video.whiteboard.HMSWhiteboardUpdateListener","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update-listener/index.html","searchKeys":["HMSWhiteboardUpdateListener","interface HMSWhiteboardUpdateListener","live.hms.video.whiteboard.HMSWhiteboardUpdateListener"]},{"name":"interface HmsPollUpdateListener","description":"live.hms.video.interactivity.HmsPollUpdateListener","location":"lib/live.hms.video.interactivity/-hms-poll-update-listener/index.html","searchKeys":["HmsPollUpdateListener","interface HmsPollUpdateListener","live.hms.video.interactivity.HmsPollUpdateListener"]},{"name":"interface HmsTypedActionResultListener : IErrorListener","description":"live.hms.video.sdk.HmsTypedActionResultListener","location":"lib/live.hms.video.sdk/-hms-typed-action-result-listener/index.html","searchKeys":["HmsTypedActionResultListener","interface HmsTypedActionResultListener : IErrorListener","live.hms.video.sdk.HmsTypedActionResultListener"]},{"name":"interface HmsVideoFrameListener","description":"live.hms.video.sdk.HmsVideoFrameListener","location":"lib/live.hms.video.sdk/-hms-video-frame-listener/index.html","searchKeys":["HmsVideoFrameListener","interface HmsVideoFrameListener","live.hms.video.sdk.HmsVideoFrameListener"]},{"name":"interface HmsVirtualBackgroundInterface : HMSVideoPlugin","description":"live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface","location":"lib/live.hms.video.plugin.video.virtualbackground/-hms-virtual-background-interface/index.html","searchKeys":["HmsVirtualBackgroundInterface","interface HmsVirtualBackgroundInterface : HMSVideoPlugin","live.hms.video.plugin.video.virtualbackground.HmsVirtualBackgroundInterface"]},{"name":"interface IErrorListener","description":"live.hms.video.sdk.IErrorListener","location":"lib/live.hms.video.sdk/-i-error-listener/index.html","searchKeys":["IErrorListener","interface IErrorListener","live.hms.video.sdk.IErrorListener"]},{"name":"interface Loggable","description":"live.hms.video.utils.HMSLogger.Loggable","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/index.html","searchKeys":["Loggable","interface Loggable","live.hms.video.utils.HMSLogger.Loggable"]},{"name":"interface NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellation","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/index.html","searchKeys":["NoiseCancellation","interface NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellation"]},{"name":"interface NoiseCancellationFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory/index.html","searchKeys":["NoiseCancellationFactory","interface NoiseCancellationFactory","live.hms.video.factories.noisecancellation.NoiseCancellationFactory"]},{"name":"interface PeerListResultListener : IErrorListener","description":"live.hms.video.sdk.listeners.PeerListResultListener","location":"lib/live.hms.video.sdk.listeners/-peer-list-result-listener/index.html","searchKeys":["PeerListResultListener","interface PeerListResultListener : IErrorListener","live.hms.video.sdk.listeners.PeerListResultListener"]},{"name":"interface PublishBaseSamples : BaseSample","description":"live.hms.video.connection.stats.clientside.model.PublishBaseSamples","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-base-samples/index.html","searchKeys":["PublishBaseSamples","interface PublishBaseSamples : BaseSample","live.hms.video.connection.stats.clientside.model.PublishBaseSamples"]},{"name":"interface RequestPermissionInterface","description":"live.hms.video.sdk.RequestPermissionInterface","location":"lib/live.hms.video.sdk/-request-permission-interface/index.html","searchKeys":["RequestPermissionInterface","interface RequestPermissionInterface","live.hms.video.sdk.RequestPermissionInterface"]},{"name":"interface RolePreviewListener : IErrorListener, RequestPermissionInterface","description":"live.hms.video.sdk.RolePreviewListener","location":"lib/live.hms.video.sdk/-role-preview-listener/index.html","searchKeys":["RolePreviewListener","interface RolePreviewListener : IErrorListener, RequestPermissionInterface","live.hms.video.sdk.RolePreviewListener"]},{"name":"interface SubscribeBaseSample : BaseSample","description":"live.hms.video.connection.stats.clientside.model.SubscribeBaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-subscribe-base-sample/index.html","searchKeys":["SubscribeBaseSample","interface SubscribeBaseSample : BaseSample","live.hms.video.connection.stats.clientside.model.SubscribeBaseSample"]},{"name":"interface TrackAnalytics","description":"live.hms.video.connection.stats.clientside.model.TrackAnalytics","location":"lib/live.hms.video.connection.stats.clientside.model/-track-analytics/index.html","searchKeys":["TrackAnalytics","interface TrackAnalytics","live.hms.video.connection.stats.clientside.model.TrackAnalytics"]},{"name":"interface VideoFrameInfoListener","description":"live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener","location":"lib/live.hms.video.plugin.video.virtualbackground/-video-frame-info-listener/index.html","searchKeys":["VideoFrameInfoListener","interface VideoFrameInfoListener","live.hms.video.plugin.video.virtualbackground.VideoFrameInfoListener"]},{"name":"interface VideoSubscribeBaseSample : BaseSample","description":"live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample","location":"lib/live.hms.video.connection.stats.clientside.model/-video-subscribe-base-sample/index.html","searchKeys":["VideoSubscribeBaseSample","interface VideoSubscribeBaseSample : BaseSample","live.hms.video.connection.stats.clientside.model.VideoSubscribeBaseSample"]},{"name":"longAnswer","description":"live.hms.video.polls.models.question.HMSPollQuestionType.longAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/long-answer/index.html","searchKeys":["longAnswer","longAnswer","live.hms.video.polls.models.question.HMSPollQuestionType.longAnswer"]},{"name":"low","description":"live.hms.video.sdk.models.Layer.low","location":"lib/live.hms.video.sdk.models/-layer/low/index.html","searchKeys":["low","low","live.hms.video.sdk.models.Layer.low"]},{"name":"medium","description":"live.hms.video.sdk.models.Layer.medium","location":"lib/live.hms.video.sdk.models/-layer/medium/index.html","searchKeys":["medium","medium","live.hms.video.sdk.models.Layer.medium"]},{"name":"multiChoice","description":"live.hms.video.polls.models.question.HMSPollQuestionType.multiChoice","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/multi-choice/index.html","searchKeys":["multiChoice","multiChoice","live.hms.video.polls.models.question.HMSPollQuestionType.multiChoice"]},{"name":"noDVR","description":"live.hms.video.sdk.models.HMSHLSPlaylistType.noDVR","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-playlist-type/no-d-v-r/index.html","searchKeys":["noDVR","noDVR","live.hms.video.sdk.models.HMSHLSPlaylistType.noDVR"]},{"name":"none","description":"live.hms.video.sdk.models.Layer.none","location":"lib/live.hms.video.sdk.models/-layer/none/index.html","searchKeys":["none","none","live.hms.video.sdk.models.Layer.none"]},{"name":"none","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.none","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/none/index.html","searchKeys":["none","none","live.hms.video.sdk.peerlist.models.BeamRecordingStates.none"]},{"name":"none","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.none","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/none/index.html","searchKeys":["none","none","live.hms.video.sdk.peerlist.models.BeamStreamingStates.none"]},{"name":"object AndroidSDKConstants","description":"live.hms.video.utils.AndroidSDKConstants","location":"lib/live.hms.video.utils/-android-s-d-k-constants/index.html","searchKeys":["AndroidSDKConstants","object AndroidSDKConstants","live.hms.video.utils.AndroidSDKConstants"]},{"name":"object AudioDeviceMapping","description":"live.hms.video.audio.manager.AudioDeviceMapping","location":"lib/live.hms.video.audio.manager/-audio-device-mapping/index.html","searchKeys":["AudioDeviceMapping","object AudioDeviceMapping","live.hms.video.audio.manager.AudioDeviceMapping"]},{"name":"object Available : AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.Available","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-available/index.html","searchKeys":["Available","object Available : AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus.Available"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Audio.Companion","location":"lib/live.hms.video.connection.degredation/-audio/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Audio.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Peer.Companion","location":"lib/live.hms.video.connection.degredation/-peer/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Peer.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.Companion"]},{"name":"object Companion","description":"live.hms.video.connection.degredation.Video.Companion","location":"lib/live.hms.video.connection.degredation/-video/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.connection.degredation.Video.Companion"]},{"name":"object Companion","description":"live.hms.video.database.converters.TypeConverter.Companion","location":"lib/live.hms.video.database.converters/-type-converter/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.database.converters.TypeConverter.Companion"]},{"name":"object Companion","description":"live.hms.video.diagnostics.HMSDiagnostics.Companion","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.diagnostics.HMSDiagnostics.Companion"]},{"name":"object Companion","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.media.tracks.HMSRemoteAudioTrack.Companion"]},{"name":"object Companion","description":"live.hms.video.media.tracks.HMSTrackType.Companion","location":"lib/live.hms.video.media.tracks/-h-m-s-track-type/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.media.tracks.HMSTrackType.Companion"]},{"name":"object Companion","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion"]},{"name":"object Companion","description":"live.hms.video.sdk.HMSSDK.Companion","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.sdk.HMSSDK.Companion"]},{"name":"object Companion","description":"live.hms.video.services.HMSScreenCaptureService.Companion","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.services.HMSScreenCaptureService.Companion"]},{"name":"object Companion","description":"live.hms.video.services.LogAlarmManager.Companion","location":"lib/live.hms.video.services/-log-alarm-manager/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.services.LogAlarmManager.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.HmsUtilities.Companion","location":"lib/live.hms.video.utils/-hms-utilities/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.HmsUtilities.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.MicrophoneUtils.Companion","location":"lib/live.hms.video.utils/-microphone-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.MicrophoneUtils.Companion"]},{"name":"object Companion","description":"live.hms.video.utils.WertcAudioUtils.Companion","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.utils.WertcAudioUtils.Companion"]},{"name":"object EFFECTS_SDK_ENABLED : Features","description":"live.hms.video.sdk.featureflags.Features.EFFECTS_SDK_ENABLED","location":"lib/live.hms.video.sdk.featureflags/-features/-e-f-f-e-c-t-s_-s-d-k_-e-n-a-b-l-e-d/index.html","searchKeys":["EFFECTS_SDK_ENABLED","object EFFECTS_SDK_ENABLED : Features","live.hms.video.sdk.featureflags.Features.EFFECTS_SDK_ENABLED"]},{"name":"object ErrorCodes","description":"live.hms.video.error.ErrorCodes","location":"lib/live.hms.video.error/-error-codes/index.html","searchKeys":["ErrorCodes","object ErrorCodes","live.hms.video.error.ErrorCodes"]},{"name":"object GenericErrors","description":"live.hms.video.error.ErrorCodes.GenericErrors","location":"lib/live.hms.video.error/-error-codes/-generic-errors/index.html","searchKeys":["GenericErrors","object GenericErrors","live.hms.video.error.ErrorCodes.GenericErrors"]},{"name":"object GsonUtils","description":"live.hms.video.utils.GsonUtils","location":"lib/live.hms.video.utils/-gson-utils/index.html","searchKeys":["GsonUtils","object GsonUtils","live.hms.video.utils.GsonUtils"]},{"name":"object HIPPA_ROOM : Features","description":"live.hms.video.sdk.featureflags.Features.HIPPA_ROOM","location":"lib/live.hms.video.sdk.featureflags/-features/-h-i-p-p-a_-r-o-o-m/index.html","searchKeys":["HIPPA_ROOM","object HIPPA_ROOM : Features","live.hms.video.sdk.featureflags.Features.HIPPA_ROOM"]},{"name":"object HMSCoroutineScope : CoroutineScope","description":"live.hms.video.utils.HMSCoroutineScope","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/index.html","searchKeys":["HMSCoroutineScope","object HMSCoroutineScope : CoroutineScope","live.hms.video.utils.HMSCoroutineScope"]},{"name":"object HMSLogger","description":"live.hms.video.utils.HMSLogger","location":"lib/live.hms.video.utils/-h-m-s-logger/index.html","searchKeys":["HMSLogger","object HMSLogger","live.hms.video.utils.HMSLogger"]},{"name":"object HMSMessageType","description":"live.hms.video.sdk.models.enums.HMSMessageType","location":"lib/live.hms.video.sdk.models.enums/-h-m-s-message-type/index.html","searchKeys":["HMSMessageType","object HMSMessageType","live.hms.video.sdk.models.enums.HMSMessageType"]},{"name":"object HMSTrackSource","description":"live.hms.video.media.tracks.HMSTrackSource","location":"lib/live.hms.video.media.tracks/-h-m-s-track-source/index.html","searchKeys":["HMSTrackSource","object HMSTrackSource","live.hms.video.media.tracks.HMSTrackSource"]},{"name":"object InitAPIErrors","description":"live.hms.video.error.ErrorCodes.InitAPIErrors","location":"lib/live.hms.video.error/-error-codes/-init-a-p-i-errors/index.html","searchKeys":["InitAPIErrors","object InitAPIErrors","live.hms.video.error.ErrorCodes.InitAPIErrors"]},{"name":"object LogUtils","description":"live.hms.video.utils.LogUtils","location":"lib/live.hms.video.utils/-log-utils/index.html","searchKeys":["LogUtils","object LogUtils","live.hms.video.utils.LogUtils"]},{"name":"object NOISE_CANCELLATION : Features","description":"live.hms.video.sdk.featureflags.Features.NOISE_CANCELLATION","location":"lib/live.hms.video.sdk.featureflags/-features/-n-o-i-s-e_-c-a-n-c-e-l-l-a-t-i-o-n/index.html","searchKeys":["NOISE_CANCELLATION","object NOISE_CANCELLATION : Features","live.hms.video.sdk.featureflags.Features.NOISE_CANCELLATION"]},{"name":"object NON_WEBRTC_DISABLE_OFFER : Features","description":"live.hms.video.sdk.featureflags.Features.NON_WEBRTC_DISABLE_OFFER","location":"lib/live.hms.video.sdk.featureflags/-features/-n-o-n_-w-e-b-r-t-c_-d-i-s-a-b-l-e_-o-f-f-e-r/index.html","searchKeys":["NON_WEBRTC_DISABLE_OFFER","object NON_WEBRTC_DISABLE_OFFER : Features","live.hms.video.sdk.featureflags.Features.NON_WEBRTC_DISABLE_OFFER"]},{"name":"object PUBLISH_STATS : Features","description":"live.hms.video.sdk.featureflags.Features.PUBLISH_STATS","location":"lib/live.hms.video.sdk.featureflags/-features/-p-u-b-l-i-s-h_-s-t-a-t-s/index.html","searchKeys":["PUBLISH_STATS","object PUBLISH_STATS : Features","live.hms.video.sdk.featureflags.Features.PUBLISH_STATS"]},{"name":"object ProcessTimeVariables","description":"live.hms.video.sdk.ProcessTimeVariables","location":"lib/live.hms.video.sdk/-process-time-variables/index.html","searchKeys":["ProcessTimeVariables","object ProcessTimeVariables","live.hms.video.sdk.ProcessTimeVariables"]},{"name":"object SERVER_SIDE_SUBSCRIBE_DEGRADATION : Features","description":"live.hms.video.sdk.featureflags.Features.SERVER_SIDE_SUBSCRIBE_DEGRADATION","location":"lib/live.hms.video.sdk.featureflags/-features/-s-e-r-v-e-r_-s-i-d-e_-s-u-b-s-c-r-i-b-e_-d-e-g-r-a-d-a-t-i-o-n/index.html","searchKeys":["SERVER_SIDE_SUBSCRIBE_DEGRADATION","object SERVER_SIDE_SUBSCRIBE_DEGRADATION : Features","live.hms.video.sdk.featureflags.Features.SERVER_SIDE_SUBSCRIBE_DEGRADATION"]},{"name":"object SIMULCAST : Features","description":"live.hms.video.sdk.featureflags.Features.SIMULCAST","location":"lib/live.hms.video.sdk.featureflags/-features/-s-i-m-u-l-c-a-s-t/index.html","searchKeys":["SIMULCAST","object SIMULCAST : Features","live.hms.video.sdk.featureflags.Features.SIMULCAST"]},{"name":"object SOFTWARE_ECHO_CANCELLATION_ENABLED : Features","description":"live.hms.video.sdk.featureflags.Features.SOFTWARE_ECHO_CANCELLATION_ENABLED","location":"lib/live.hms.video.sdk.featureflags/-features/-s-o-f-t-w-a-r-e_-e-c-h-o_-c-a-n-c-e-l-l-a-t-i-o-n_-e-n-a-b-l-e-d/index.html","searchKeys":["SOFTWARE_ECHO_CANCELLATION_ENABLED","object SOFTWARE_ECHO_CANCELLATION_ENABLED : Features","live.hms.video.sdk.featureflags.Features.SOFTWARE_ECHO_CANCELLATION_ENABLED"]},{"name":"object SUBSCRIBER_STATS : Features","description":"live.hms.video.sdk.featureflags.Features.SUBSCRIBER_STATS","location":"lib/live.hms.video.sdk.featureflags/-features/-s-u-b-s-c-r-i-b-e-r_-s-t-a-t-s/index.html","searchKeys":["SUBSCRIBER_STATS","object SUBSCRIBER_STATS : Features","live.hms.video.sdk.featureflags.Features.SUBSCRIBER_STATS"]},{"name":"object SharedEglContext","description":"live.hms.video.utils.SharedEglContext","location":"lib/live.hms.video.utils/-shared-egl-context/index.html","searchKeys":["SharedEglContext","object SharedEglContext","live.hms.video.utils.SharedEglContext"]},{"name":"object TracksErrors","description":"live.hms.video.error.ErrorCodes.TracksErrors","location":"lib/live.hms.video.error/-error-codes/-tracks-errors/index.html","searchKeys":["TracksErrors","object TracksErrors","live.hms.video.error.ErrorCodes.TracksErrors"]},{"name":"object WebSocketConnectionErrors","description":"live.hms.video.error.ErrorCodes.WebSocketConnectionErrors","location":"lib/live.hms.video.error/-error-codes/-web-socket-connection-errors/index.html","searchKeys":["WebSocketConnectionErrors","object WebSocketConnectionErrors","live.hms.video.error.ErrorCodes.WebSocketConnectionErrors"]},{"name":"object WebrtcErrors","description":"live.hms.video.error.ErrorCodes.WebrtcErrors","location":"lib/live.hms.video.error/-error-codes/-webrtc-errors/index.html","searchKeys":["WebrtcErrors","object WebrtcErrors","live.hms.video.error.ErrorCodes.WebrtcErrors"]},{"name":"object WebsocketMethodErrors","description":"live.hms.video.error.ErrorCodes.WebsocketMethodErrors","location":"lib/live.hms.video.error/-error-codes/-websocket-method-errors/index.html","searchKeys":["WebsocketMethodErrors","object WebsocketMethodErrors","live.hms.video.error.ErrorCodes.WebsocketMethodErrors"]},{"name":"open class HMSAudioManagerLegacy : HMSAudioManager","description":"live.hms.video.audio.HMSAudioManagerLegacy","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/index.html","searchKeys":["HMSAudioManagerLegacy","open class HMSAudioManagerLegacy : HMSAudioManager","live.hms.video.audio.HMSAudioManagerLegacy"]},{"name":"open class HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, var source: String = HMSTrackSource.REGULAR) : HMSTrack","description":"live.hms.video.media.tracks.HMSAudioTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/index.html","searchKeys":["HMSAudioTrack","open class HMSAudioTrack(stream: HMSMediaStream, nativeTrack: AudioTrack, var source: String = HMSTrackSource.REGULAR) : HMSTrack","live.hms.video.media.tracks.HMSAudioTrack"]},{"name":"open class HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, var source: String) : HMSTrack","description":"live.hms.video.media.tracks.HMSVideoTrack","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/index.html","searchKeys":["HMSVideoTrack","open class HMSVideoTrack(stream: HMSMediaStream, nativeTrack: VideoTrack, var source: String) : HMSTrack","live.hms.video.media.tracks.HMSVideoTrack"]},{"name":"open class YuvFrame","description":"live.hms.video.utils.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/index.html","searchKeys":["YuvFrame","open class YuvFrame","live.hms.video.utils.YuvFrame"]},{"name":"open fun HMSAudioManagerLegacy(context: Context, analytics: AnalyticsEventsService, hmsAudioTrackSettings: HMSAudioTrackSettings, errorListener: IErrorListener, audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","description":"live.hms.video.audio.HMSAudioManagerLegacy.HMSAudioManagerLegacy","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/-h-m-s-audio-manager-legacy.html","searchKeys":["HMSAudioManagerLegacy","open fun HMSAudioManagerLegacy(context: Context, analytics: AnalyticsEventsService, hmsAudioTrackSettings: HMSAudioTrackSettings, errorListener: IErrorListener, audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener)","live.hms.video.audio.HMSAudioManagerLegacy.HMSAudioManagerLegacy"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","description":"live.hms.video.utils.YuvFrame.YuvFrame","location":"lib/live.hms.video.utils/-yuv-frame/-yuv-frame.html","searchKeys":["YuvFrame","open fun YuvFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","live.hms.video.utils.YuvFrame.YuvFrame"]},{"name":"open fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManagerLegacy.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","open fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManagerLegacy.addAudioFocusChangeCallback"]},{"name":"open fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener? = null)","description":"live.hms.video.media.tracks.HMSVideoTrack.addSink","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/add-sink.html","searchKeys":["addSink","open fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener? = null)","live.hms.video.media.tracks.HMSVideoTrack.addSink"]},{"name":"open fun clearCommunicationDevice()","description":"live.hms.video.audio.manager.AudioManagerCompat.clearCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/clear-communication-device.html","searchKeys":["clearCommunicationDevice","open fun clearCommunicationDevice()","live.hms.video.audio.manager.AudioManagerCompat.clearCommunicationDevice"]},{"name":"open fun create(context: Context): AudioManagerCompat","description":"live.hms.video.audio.manager.AudioManagerCompat.create","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/create.html","searchKeys":["create","open fun create(context: Context): AudioManagerCompat","live.hms.video.audio.manager.AudioManagerCompat.create"]},{"name":"open fun dispose()","description":"live.hms.video.media.capturers.HMSCapturer.dispose","location":"lib/live.hms.video.media.capturers/-h-m-s-capturer/dispose.html","searchKeys":["dispose","open fun dispose()","live.hms.video.media.capturers.HMSCapturer.dispose"]},{"name":"open fun dispose()","description":"live.hms.video.utils.YuvFrame.dispose","location":"lib/live.hms.video.utils/-yuv-frame/dispose.html","searchKeys":["dispose","open fun dispose()","live.hms.video.utils.YuvFrame.dispose"]},{"name":"open fun fromVideoFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","description":"live.hms.video.utils.YuvFrame.fromVideoFrame","location":"lib/live.hms.video.utils/-yuv-frame/from-video-frame.html","searchKeys":["fromVideoFrame","open fun fromVideoFrame(videoFrame: VideoFrame, processingFlags: Int, timestamp: Long)","live.hms.video.utils.YuvFrame.fromVideoFrame"]},{"name":"open fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.HMSAudioManagerLegacy.getAudioDevicesInfoList","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","open fun getAudioDevicesInfoList(): List","live.hms.video.audio.HMSAudioManagerLegacy.getAudioDevicesInfoList"]},{"name":"open fun getAvailableCommunicationDevices(): List","description":"live.hms.video.audio.manager.AudioManagerCompat.getAvailableCommunicationDevices","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-available-communication-devices.html","searchKeys":["getAvailableCommunicationDevices","open fun getAvailableCommunicationDevices(): List","live.hms.video.audio.manager.AudioManagerCompat.getAvailableCommunicationDevices"]},{"name":"open fun getBitmap(): Bitmap","description":"live.hms.video.utils.YuvFrame.getBitmap","location":"lib/live.hms.video.utils/-yuv-frame/get-bitmap.html","searchKeys":["getBitmap","open fun getBitmap(): Bitmap","live.hms.video.utils.YuvFrame.getBitmap"]},{"name":"open fun getCommunicationDevice(): AudioDeviceInfo","description":"live.hms.video.audio.manager.AudioManagerCompat.getCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-communication-device.html","searchKeys":["getCommunicationDevice","open fun getCommunicationDevice(): AudioDeviceInfo","live.hms.video.audio.manager.AudioManagerCompat.getCommunicationDevice"]},{"name":"open fun getConnectedBluetoothDevice(): AudioDeviceInfo","description":"live.hms.video.audio.manager.AudioManagerCompat.getConnectedBluetoothDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-connected-bluetooth-device.html","searchKeys":["getConnectedBluetoothDevice","open fun getConnectedBluetoothDevice(): AudioDeviceInfo","live.hms.video.audio.manager.AudioManagerCompat.getConnectedBluetoothDevice"]},{"name":"open fun getMode(): Int","description":"live.hms.video.audio.manager.AudioManagerCompat.getMode","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-mode.html","searchKeys":["getMode","open fun getMode(): Int","live.hms.video.audio.manager.AudioManagerCompat.getMode"]},{"name":"open fun getVoiceCallVolume(): Float","description":"live.hms.video.audio.manager.AudioManagerCompat.getVoiceCallVolume","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/get-voice-call-volume.html","searchKeys":["getVoiceCallVolume","open fun getVoiceCallVolume(): Float","live.hms.video.audio.manager.AudioManagerCompat.getVoiceCallVolume"]},{"name":"open fun hasData(): Boolean","description":"live.hms.video.utils.YuvFrame.hasData","location":"lib/live.hms.video.utils/-yuv-frame/has-data.html","searchKeys":["hasData","open fun hasData(): Boolean","live.hms.video.utils.YuvFrame.hasData"]},{"name":"open fun hasEarpiece(context: Context): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.hasEarpiece","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/has-earpiece.html","searchKeys":["hasEarpiece","open fun hasEarpiece(context: Context): Boolean","live.hms.video.audio.manager.AudioManagerCompat.hasEarpiece"]},{"name":"open fun isBluetoothConnected(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothConnected","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-connected.html","searchKeys":["isBluetoothConnected","open fun isBluetoothConnected(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothConnected"]},{"name":"open fun isBluetoothHeadsetAvailable(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothHeadsetAvailable","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-headset-available.html","searchKeys":["isBluetoothHeadsetAvailable","open fun isBluetoothHeadsetAvailable(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothHeadsetAvailable"]},{"name":"open fun isBluetoothScoAvailableOffCall(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoAvailableOffCall","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-sco-available-off-call.html","searchKeys":["isBluetoothScoAvailableOffCall","open fun isBluetoothScoAvailableOffCall(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoAvailableOffCall"]},{"name":"open fun isBluetoothScoOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-bluetooth-sco-on.html","searchKeys":["isBluetoothScoOn","open fun isBluetoothScoOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isBluetoothScoOn"]},{"name":"open fun isMicrophoneMute(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isMicrophoneMute","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-microphone-mute.html","searchKeys":["isMicrophoneMute","open fun isMicrophoneMute(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isMicrophoneMute"]},{"name":"open fun isSpeakerphoneOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isSpeakerphoneOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-speakerphone-on.html","searchKeys":["isSpeakerphoneOn","open fun isSpeakerphoneOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isSpeakerphoneOn"]},{"name":"open fun isWiredHeadsetOn(): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.isWiredHeadsetOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/is-wired-headset-on.html","searchKeys":["isWiredHeadsetOn","open fun isWiredHeadsetOn(): Boolean","live.hms.video.audio.manager.AudioManagerCompat.isWiredHeadsetOn"]},{"name":"open fun onAudioDeviceInfoChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioInfoDevices: List)","description":"live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceInfoChanged","location":"lib/live.hms.video.audio/-h-m-s-audio-manager/-audio-manager-device-change-listener/on-audio-device-info-changed.html","searchKeys":["onAudioDeviceInfoChanged","open fun onAudioDeviceInfoChanged(selectedAudioDevice: HMSAudioManager.AudioDevice, availableAudioInfoDevices: List)","live.hms.video.audio.HMSAudioManager.AudioManagerDeviceChangeListener.onAudioDeviceInfoChanged"]},{"name":"open fun onAudioLevelChanged(decibel: Int)","description":"live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onAudioLevelChanged","location":"lib/live.hms.video.diagnostics/-h-m-s-audio-device-check-listener/on-audio-level-changed.html","searchKeys":["onAudioLevelChanged","open fun onAudioLevelChanged(decibel: Int)","live.hms.video.diagnostics.HMSAudioDeviceCheckListener.onAudioLevelChanged"]},{"name":"open fun onLocalAudioStats(audioStats: HMSLocalAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onLocalAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-local-audio-stats.html","searchKeys":["onLocalAudioStats","open fun onLocalAudioStats(audioStats: HMSLocalAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onLocalAudioStats"]},{"name":"open fun onLocalVideoStats(videoStats: List, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onLocalVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-local-video-stats.html","searchKeys":["onLocalVideoStats","open fun onLocalVideoStats(videoStats: List, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onLocalVideoStats"]},{"name":"open fun onLogToFile(fileName: HMSLogger.LogFiles, tag: String, message: MutableMap)","description":"live.hms.video.utils.HMSLogger.Loggable.onLogToFile","location":"lib/live.hms.video.utils/-h-m-s-logger/-loggable/on-log-to-file.html","searchKeys":["onLogToFile","open fun onLogToFile(fileName: HMSLogger.LogFiles, tag: String, message: MutableMap)","live.hms.video.utils.HMSLogger.Loggable.onLogToFile"]},{"name":"open fun onPermissionsRequested(permissions: List)","description":"live.hms.video.sdk.RequestPermissionInterface.onPermissionsRequested","location":"lib/live.hms.video.sdk/-request-permission-interface/on-permissions-requested.html","searchKeys":["onPermissionsRequested","open fun onPermissionsRequested(permissions: List)","live.hms.video.sdk.RequestPermissionInterface.onPermissionsRequested"]},{"name":"open fun onRTCStats(rtcStats: HMSRTCStatsReport)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRTCStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-r-t-c-stats.html","searchKeys":["onRTCStats","open fun onRTCStats(rtcStats: HMSRTCStatsReport)","live.hms.video.connection.stats.HMSStatsObserver.onRTCStats"]},{"name":"open fun onReconnected()","description":"live.hms.video.sdk.HMSUpdateListener.onReconnected","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-reconnected.html","searchKeys":["onReconnected","open fun onReconnected()","live.hms.video.sdk.HMSUpdateListener.onReconnected"]},{"name":"open fun onReconnecting(error: HMSException)","description":"live.hms.video.sdk.HMSUpdateListener.onReconnecting","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-reconnecting.html","searchKeys":["onReconnecting","open fun onReconnecting(error: HMSException)","live.hms.video.sdk.HMSUpdateListener.onReconnecting"]},{"name":"open fun onRemoteAudioStats(audioStats: HMSRemoteAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRemoteAudioStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-remote-audio-stats.html","searchKeys":["onRemoteAudioStats","open fun onRemoteAudioStats(audioStats: HMSRemoteAudioStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onRemoteAudioStats"]},{"name":"open fun onRemoteVideoStats(videoStats: HMSRemoteVideoStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","description":"live.hms.video.connection.stats.HMSStatsObserver.onRemoteVideoStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats-observer/on-remote-video-stats.html","searchKeys":["onRemoteVideoStats","open fun onRemoteVideoStats(videoStats: HMSRemoteVideoStats, hmsTrack: HMSTrack?, hmsPeer: HMSPeer?)","live.hms.video.connection.stats.HMSStatsObserver.onRemoteVideoStats"]},{"name":"open fun onRemovedFromRoom(notification: HMSRemovedFromRoom)","description":"live.hms.video.sdk.HMSUpdateListener.onRemovedFromRoom","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-removed-from-room.html","searchKeys":["onRemovedFromRoom","open fun onRemovedFromRoom(notification: HMSRemovedFromRoom)","live.hms.video.sdk.HMSUpdateListener.onRemovedFromRoom"]},{"name":"open fun onSessionStoreAvailable(sessionStore: HmsSessionStore)","description":"live.hms.video.sdk.HMSUpdateListener.onSessionStoreAvailable","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-session-store-available.html","searchKeys":["onSessionStoreAvailable","open fun onSessionStoreAvailable(sessionStore: HmsSessionStore)","live.hms.video.sdk.HMSUpdateListener.onSessionStoreAvailable"]},{"name":"open fun onTranscripts(transcripts: HmsTranscripts)","description":"live.hms.video.sdk.HMSUpdateListener.onTranscripts","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/on-transcripts.html","searchKeys":["onTranscripts","open fun onTranscripts(transcripts: HmsTranscripts)","live.hms.video.sdk.HMSUpdateListener.onTranscripts"]},{"name":"open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","description":"live.hms.video.sdk.HMSPreviewListener.peerListUpdated","location":"lib/live.hms.video.sdk/-h-m-s-preview-listener/peer-list-updated.html","searchKeys":["peerListUpdated","open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","live.hms.video.sdk.HMSPreviewListener.peerListUpdated"]},{"name":"open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","description":"live.hms.video.sdk.HMSUpdateListener.peerListUpdated","location":"lib/live.hms.video.sdk/-h-m-s-update-listener/peer-list-updated.html","searchKeys":["peerListUpdated","open fun peerListUpdated(addedPeers: ArrayList?, removedPeers: ArrayList?)","live.hms.video.sdk.HMSUpdateListener.peerListUpdated"]},{"name":"open fun registerAudioDeviceCallback(deviceCallback: AudioDeviceCallback, handler: Handler)","description":"live.hms.video.audio.manager.AudioManagerCompat.registerAudioDeviceCallback","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/register-audio-device-callback.html","searchKeys":["registerAudioDeviceCallback","open fun registerAudioDeviceCallback(deviceCallback: AudioDeviceCallback, handler: Handler)","live.hms.video.audio.manager.AudioManagerCompat.registerAudioDeviceCallback"]},{"name":"open fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.HMSAudioManagerLegacy.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","open fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.HMSAudioManagerLegacy.removeAudioFocusChangeCallback"]},{"name":"open fun removeSink(sink: VideoSink)","description":"live.hms.video.media.tracks.HMSVideoTrack.removeSink","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/remove-sink.html","searchKeys":["removeSink","open fun removeSink(sink: VideoSink)","live.hms.video.media.tracks.HMSVideoTrack.removeSink"]},{"name":"open fun ringVolumeWithMinimum(): Float","description":"live.hms.video.audio.manager.AudioManagerCompat.ringVolumeWithMinimum","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/ring-volume-with-minimum.html","searchKeys":["ringVolumeWithMinimum","open fun ringVolumeWithMinimum(): Float","live.hms.video.audio.manager.AudioManagerCompat.ringVolumeWithMinimum"]},{"name":"open fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.HMSAudioManagerLegacy.selectAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/select-audio-device.html","searchKeys":["selectAudioDevice","open fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.HMSAudioManagerLegacy.selectAudioDevice"]},{"name":"open fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.HMSAudioManagerLegacy.setAudioMode","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/set-audio-mode.html","searchKeys":["setAudioMode","open fun setAudioMode(audioMode: Int)","live.hms.video.audio.HMSAudioManagerLegacy.setAudioMode"]},{"name":"open fun setBluetoothScoOn(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setBluetoothScoOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-bluetooth-sco-on.html","searchKeys":["setBluetoothScoOn","open fun setBluetoothScoOn(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setBluetoothScoOn"]},{"name":"open fun setCommunicationDevice(device: AudioDeviceInfo): Boolean","description":"live.hms.video.audio.manager.AudioManagerCompat.setCommunicationDevice","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-communication-device.html","searchKeys":["setCommunicationDevice","open fun setCommunicationDevice(device: AudioDeviceInfo): Boolean","live.hms.video.audio.manager.AudioManagerCompat.setCommunicationDevice"]},{"name":"open fun setKey(key: String)","description":"live.hms.video.plugin.video.HMSVideoPlugin.setKey","location":"lib/live.hms.video.plugin.video/-h-m-s-video-plugin/set-key.html","searchKeys":["setKey","open fun setKey(key: String)","live.hms.video.plugin.video.HMSVideoPlugin.setKey"]},{"name":"open fun setMicrophoneMute(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setMicrophoneMute","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-microphone-mute.html","searchKeys":["setMicrophoneMute","open fun setMicrophoneMute(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setMicrophoneMute"]},{"name":"open fun setMode(modeInCommunication: Int)","description":"live.hms.video.audio.manager.AudioManagerCompat.setMode","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-mode.html","searchKeys":["setMode","open fun setMode(modeInCommunication: Int)","live.hms.video.audio.manager.AudioManagerCompat.setMode"]},{"name":"open fun setSpeakerphoneOn(on: Boolean)","description":"live.hms.video.audio.manager.AudioManagerCompat.setSpeakerphoneOn","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/set-speakerphone-on.html","searchKeys":["setSpeakerphoneOn","open fun setSpeakerphoneOn(on: Boolean)","live.hms.video.audio.manager.AudioManagerCompat.setSpeakerphoneOn"]},{"name":"open fun start()","description":"live.hms.video.audio.HMSAudioManagerLegacy.start","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/start.html","searchKeys":["start","open fun start()","live.hms.video.audio.HMSAudioManagerLegacy.start"]},{"name":"open fun startBluetoothSco()","description":"live.hms.video.audio.manager.AudioManagerCompat.startBluetoothSco","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/start-bluetooth-sco.html","searchKeys":["startBluetoothSco","open fun startBluetoothSco()","live.hms.video.audio.manager.AudioManagerCompat.startBluetoothSco"]},{"name":"open fun stop()","description":"live.hms.video.audio.HMSAudioManagerLegacy.stop","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/stop.html","searchKeys":["stop","open fun stop()","live.hms.video.audio.HMSAudioManagerLegacy.stop"]},{"name":"open fun stopBluetoothSco()","description":"live.hms.video.audio.manager.AudioManagerCompat.stopBluetoothSco","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/stop-bluetooth-sco.html","searchKeys":["stopBluetoothSco","open fun stopBluetoothSco()","live.hms.video.audio.manager.AudioManagerCompat.stopBluetoothSco"]},{"name":"open fun unregisterAudioDeviceCallback(deviceCallback: AudioDeviceCallback)","description":"live.hms.video.audio.manager.AudioManagerCompat.unregisterAudioDeviceCallback","location":"lib/live.hms.video.audio.manager/-audio-manager-compat/unregister-audio-device-callback.html","searchKeys":["unregisterAudioDeviceCallback","open fun unregisterAudioDeviceCallback(deviceCallback: AudioDeviceCallback)","live.hms.video.audio.manager.AudioManagerCompat.unregisterAudioDeviceCallback"]},{"name":"open fun updateAudioDeviceState()","description":"live.hms.video.audio.HMSAudioManagerLegacy.updateAudioDeviceState","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/update-audio-device-state.html","searchKeys":["updateAudioDeviceState","open fun updateAudioDeviceState()","live.hms.video.audio.HMSAudioManagerLegacy.updateAudioDeviceState"]},{"name":"open fun valueOf(name: String): PhoneCallState","description":"live.hms.video.media.settings.PhoneCallState.valueOf","location":"lib/live.hms.video.media.settings/-phone-call-state/value-of.html","searchKeys":["valueOf","open fun valueOf(name: String): PhoneCallState","live.hms.video.media.settings.PhoneCallState.valueOf"]},{"name":"open fun values(): Array","description":"live.hms.video.media.settings.PhoneCallState.values","location":"lib/live.hms.video.media.settings/-phone-call-state/values.html","searchKeys":["values","open fun values(): Array","live.hms.video.media.settings.PhoneCallState.values"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"live.hms.video.media.tracks.HMSTrack.equals","location":"lib/live.hms.video.media.tracks/-h-m-s-track/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","live.hms.video.media.tracks.HMSTrack.equals"]},{"name":"open override fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.addAudioFocusChangeCallback","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/add-audio-focus-change-callback.html","searchKeys":["addAudioFocusChangeCallback","open override fun addAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.manager.HMSAudioManagerApi31.addAudioFocusChangeCallback"]},{"name":"open override fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener?)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.addSink","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/add-sink.html","searchKeys":["addSink","open override fun addSink(sink: VideoSink, resultListener: HMSAddSinkResultListener?)","live.hms.video.media.tracks.HMSRemoteVideoTrack.addSink"]},{"name":"open override fun close()","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.close","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/close.html","searchKeys":["close","open override fun close()","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.close"]},{"name":"open override fun close()","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.close","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/close.html","searchKeys":["close","open override fun close()","live.hms.video.sdk.OfflineAnalyticsPeerInfo.close"]},{"name":"open override fun createDecoder(codecType: VideoCodecInfo?): VideoDecoder","description":"live.hms.video.factories.HMSVideoDecoderFactory.createDecoder","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/create-decoder.html","searchKeys":["createDecoder","open override fun createDecoder(codecType: VideoCodecInfo?): VideoDecoder","live.hms.video.factories.HMSVideoDecoderFactory.createDecoder"]},{"name":"open override fun getAudioDevices(): Set","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevices","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-audio-devices.html","searchKeys":["getAudioDevices","open override fun getAudioDevices(): Set","live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevices"]},{"name":"open override fun getAudioDevicesInfoList(): List","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevicesInfoList","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-audio-devices-info-list.html","searchKeys":["getAudioDevicesInfoList","open override fun getAudioDevicesInfoList(): List","live.hms.video.audio.manager.HMSAudioManagerApi31.getAudioDevicesInfoList"]},{"name":"open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getAudioProcessingFactory"]},{"name":"open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.getAudioProcessingFactory","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/get-audio-processing-factory.html","searchKeys":["getAudioProcessingFactory","open override fun getAudioProcessingFactory(enabled: Boolean): AudioProcessingFactory?","live.hms.video.factories.noisecancellation.NoiseCancellationFake.getAudioProcessingFactory"]},{"name":"open override fun getName(): String","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.getName","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.video.plugin.video.utils.HMSBitmapPlugin.getName"]},{"name":"open override fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","open override fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.getNoiseCancellationEnabled"]},{"name":"open override fun getNoiseCancellationEnabled(): Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/get-noise-cancellation-enabled.html","searchKeys":["getNoiseCancellationEnabled","open override fun getNoiseCancellationEnabled(): Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.getNoiseCancellationEnabled"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.getPluginType","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.video.plugin.video.utils.HMSBitmapPlugin.getPluginType"]},{"name":"open override fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.getSelectedAudioDevice","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/get-selected-audio-device.html","searchKeys":["getSelectedAudioDevice","open override fun getSelectedAudioDevice(): HMSAudioManager.AudioDevice","live.hms.video.audio.manager.HMSAudioManagerApi31.getSelectedAudioDevice"]},{"name":"open override fun isStarted(): Boolean","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.isStarted","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/is-started.html","searchKeys":["isStarted","open override fun isStarted(): Boolean","live.hms.video.audio.manager.HMSAudioManagerApi31.isStarted"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.isSupported","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.video.plugin.video.utils.HMSBitmapPlugin.isSupported"]},{"name":"open override fun jniLoad(context: Context): NoiseCancellation","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.jniLoad","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-factory-impl/jni-load.html","searchKeys":["jniLoad","open override fun jniLoad(context: Context): NoiseCancellation","live.hms.video.factories.noisecancellation.NoiseCancellationFactoryImpl.jniLoad"]},{"name":"open override fun onBind(intent: Intent?): IBinder","description":"live.hms.video.services.HMSScreenCaptureService.onBind","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-bind.html","searchKeys":["onBind","open override fun onBind(intent: Intent?): IBinder","live.hms.video.services.HMSScreenCaptureService.onBind"]},{"name":"open override fun onDestroy()","description":"live.hms.video.services.HMSScreenCaptureService.onDestroy","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-destroy.html","searchKeys":["onDestroy","open override fun onDestroy()","live.hms.video.services.HMSScreenCaptureService.onDestroy"]},{"name":"open override fun onReceive(context: Context?, intent: Intent?)","description":"live.hms.video.services.LogAlarmManager.onReceive","location":"lib/live.hms.video.services/-log-alarm-manager/on-receive.html","searchKeys":["onReceive","open override fun onReceive(context: Context?, intent: Intent?)","live.hms.video.services.LogAlarmManager.onReceive"]},{"name":"open override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int","description":"live.hms.video.services.HMSScreenCaptureService.onStartCommand","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/on-start-command.html","searchKeys":["onStartCommand","open override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int","live.hms.video.services.HMSScreenCaptureService.onStartCommand"]},{"name":"open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.processVideoFrame","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.processVideoFrame"]},{"name":"open override fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.removeAudioFocusChangeCallback","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/remove-audio-focus-change-callback.html","searchKeys":["removeAudioFocusChangeCallback","open override fun removeAudioFocusChangeCallback(callback: AudioManagerFocusChangeCallbacks)","live.hms.video.audio.manager.HMSAudioManagerApi31.removeAudioFocusChangeCallback"]},{"name":"open override fun removeSink(sink: VideoSink)","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.removeSink","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/remove-sink.html","searchKeys":["removeSink","open override fun removeSink(sink: VideoSink)","live.hms.video.media.tracks.HMSRemoteVideoTrack.removeSink"]},{"name":"open override fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.selectAudioDevice","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/select-audio-device.html","searchKeys":["selectAudioDevice","open override fun selectAudioDevice(device: HMSAudioManager.AudioDevice)","live.hms.video.audio.manager.HMSAudioManagerApi31.selectAudioDevice"]},{"name":"open override fun setAudioMode(audioMode: Int)","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.setAudioMode","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/set-audio-mode.html","searchKeys":["setAudioMode","open override fun setAudioMode(audioMode: Int)","live.hms.video.audio.manager.HMSAudioManagerApi31.setAudioMode"]},{"name":"open override fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-description.html","searchKeys":["setDescription","open override fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalAudioTrack.setDescription"]},{"name":"open override fun setDescription(value: String)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setDescription","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-description.html","searchKeys":["setDescription","open override fun setDescription(value: String)","live.hms.video.media.tracks.HMSLocalVideoTrack.setDescription"]},{"name":"open override fun setKey(key: String)","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.setKey","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/set-key.html","searchKeys":["setKey","open override fun setKey(key: String)","live.hms.video.plugin.video.utils.HMSBitmapPlugin.setKey"]},{"name":"open override fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-mute.html","searchKeys":["setMute","open override fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalAudioTrack.setMute"]},{"name":"open override fun setMute(value: Boolean)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setMute","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-mute.html","searchKeys":["setMute","open override fun setMute(value: Boolean)","live.hms.video.media.tracks.HMSLocalVideoTrack.setMute"]},{"name":"open override fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","open override fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationFake.setNoiseCancellationEnabled"]},{"name":"open override fun setNoiseCancellationEnabled(enabled: Boolean)","description":"live.hms.video.factories.noisecancellation.NoiseCancellationImpl.setNoiseCancellationEnabled","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-impl/set-noise-cancellation-enabled.html","searchKeys":["setNoiseCancellationEnabled","open override fun setNoiseCancellationEnabled(enabled: Boolean)","live.hms.video.factories.noisecancellation.NoiseCancellationImpl.setNoiseCancellationEnabled"]},{"name":"open override fun start()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.start","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/start.html","searchKeys":["start","open override fun start()","live.hms.video.audio.manager.HMSAudioManagerApi31.start"]},{"name":"open override fun stop()","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.stop","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.audio.manager.HMSAudioManagerApi31.stop"]},{"name":"open override fun stop()","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.stop","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.plugin.video.utils.HMSBitmapPlugin.stop"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.error.HMSException.toAnalyticsProperties","location":"lib/live.hms.video.error/-h-m-s-exception/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.error.HMSException.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSAudioTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSAudioTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toAnalyticsProperties(): HashMap","description":"live.hms.video.media.settings.HMSVideoTrackSettings.toAnalyticsProperties","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/to-analytics-properties.html","searchKeys":["toAnalyticsProperties","open override fun toAnalyticsProperties(): HashMap","live.hms.video.media.settings.HMSVideoTrackSettings.toAnalyticsProperties"]},{"name":"open override fun toString(): String","description":"live.hms.video.connection.stats.HMSRTCStats.toString","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.connection.stats.HMSRTCStats.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.connection.stats.HMSRTCStatsReport.toString","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.connection.stats.HMSRTCStatsReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.toString","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.ConnectivityCheckResult.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.IceCandidatePair.toString","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.IceCandidatePair.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.MediaServerReport.toString","location":"lib/live.hms.video.diagnostics.models/-media-server-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.MediaServerReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.diagnostics.models.SignallingReport.toString","location":"lib/live.hms.video.diagnostics.models/-signalling-report/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.diagnostics.models.SignallingReport.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.error.HMSException.toString","location":"lib/live.hms.video.error/-h-m-s-exception/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.error.HMSException.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSLocalAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSLocalVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSRemoteAudioTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSRemoteVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.media.tracks.HMSVideoTrack.toString","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.media.tracks.HMSVideoTrack.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSLocalPeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSLocalPeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSPeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSPeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSRemotePeer.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSRemotePeer.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.sdk.models.HMSSpeaker.toString","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.sdk.models.HMSSpeaker.toString"]},{"name":"open override fun toString(): String","description":"live.hms.video.signal.init.HMSRoomLayout.toString","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.video.signal.init.HMSRoomLayout.toString"]},{"name":"open override val audio_concealed_samples: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealed_samples","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_concealed_samples.html","searchKeys":["audio_concealed_samples","open override val audio_concealed_samples: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealed_samples"]},{"name":"open override val audio_concealment_events: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealment_events","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_concealment_events.html","searchKeys":["audio_concealment_events","open override val audio_concealment_events: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_concealment_events"]},{"name":"open override val audio_level_high_seconds: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_level_high_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_level_high_seconds.html","searchKeys":["audio_level_high_seconds","open override val audio_level_high_seconds: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_level_high_seconds"]},{"name":"open override val audio_total_samples_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_total_samples_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/audio_total_samples_received.html","searchKeys":["audio_total_samples_received","open override val audio_total_samples_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.audio_total_samples_received"]},{"name":"open override val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","open override val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgAvailableOutgoingBitrateBps"]},{"name":"open override val avgAvailableOutgoingBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","open override val avgAvailableOutgoingBitrateBps: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgAvailableOutgoingBitrateBps"]},{"name":"open override val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","open override val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgBitrateBps"]},{"name":"open override val avgBitrateBps: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","open override val avgBitrateBps: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgBitrateBps"]},{"name":"open override val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-jitter-ms.html","searchKeys":["avgJitterMs","open override val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgJitterMs"]},{"name":"open override val avgJitterMs: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgJitterMs","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-jitter-ms.html","searchKeys":["avgJitterMs","open override val avgJitterMs: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgJitterMs"]},{"name":"open override val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","open override val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.avgRoundTripTimeMs"]},{"name":"open override val avgRoundTripTimeMs: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgRoundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg-round-trip-time-ms.html","searchKeys":["avgRoundTripTimeMs","open override val avgRoundTripTimeMs: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avgRoundTripTimeMs"]},{"name":"open override val avg_av_sync_ms: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_av_sync_ms","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_av_sync_ms.html","searchKeys":["avg_av_sync_ms","open override val avg_av_sync_ms: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_av_sync_ms"]},{"name":"open override val avg_frames_decoded_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_decoded_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_decoded_per_sec.html","searchKeys":["avg_frames_decoded_per_sec","open override val avg_frames_decoded_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_decoded_per_sec"]},{"name":"open override val avg_frames_dropped_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_dropped_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_dropped_per_sec.html","searchKeys":["avg_frames_dropped_per_sec","open override val avg_frames_dropped_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_dropped_per_sec"]},{"name":"open override val avg_frames_received_per_sec: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_received_per_sec","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_frames_received_per_sec.html","searchKeys":["avg_frames_received_per_sec","open override val avg_frames_received_per_sec: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_frames_received_per_sec"]},{"name":"open override val avg_jitter_buffer_delay: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/avg_jitter_buffer_delay.html","searchKeys":["avg_jitter_buffer_delay","open override val avg_jitter_buffer_delay: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.avg_jitter_buffer_delay"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Audio.bytesTransported","location":"lib/live.hms.video.connection.degredation/-audio/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Audio.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.bytesTransported","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.bytesTransported"]},{"name":"open override val bytesTransported: BigInteger?","description":"live.hms.video.connection.degredation.Video.bytesTransported","location":"lib/live.hms.video.connection.degredation/-video/bytes-transported.html","searchKeys":["bytesTransported","open override val bytesTransported: BigInteger?","live.hms.video.connection.degredation.Video.bytesTransported"]},{"name":"open override val coroutineContext: CoroutineContext","description":"live.hms.video.utils.HMSCoroutineScope.coroutineContext","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/coroutine-context.html","searchKeys":["coroutineContext","open override val coroutineContext: CoroutineContext","live.hms.video.utils.HMSCoroutineScope.coroutineContext"]},{"name":"open override val fec_packets_discarded: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_discarded","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/fec_packets_discarded.html","searchKeys":["fec_packets_discarded","open override val fec_packets_discarded: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_discarded"]},{"name":"open override val fec_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/fec_packets_received.html","searchKeys":["fec_packets_received","open override val fec_packets_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.fec_packets_received"]},{"name":"open override val frame_height: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_height","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/frame_height.html","searchKeys":["frame_height","open override val frame_height: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_height"]},{"name":"open override val frame_width: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_width","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/frame_width.html","searchKeys":["frame_width","open override val frame_width: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.frame_width"]},{"name":"open override val freeze_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/freeze_count.html","searchKeys":["freeze_count","open override val freeze_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_count"]},{"name":"open override val freeze_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/freeze_duration_seconds.html","searchKeys":["freeze_duration_seconds","open override val freeze_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.freeze_duration_seconds"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Audio.jitter","location":"lib/live.hms.video.connection.degredation/-audio/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Audio.jitter"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.jitter","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.jitter"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.jitter","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.jitter"]},{"name":"open override val jitter: Double?","description":"live.hms.video.connection.degredation.Video.jitter","location":"lib/live.hms.video.connection.degredation/-video/jitter.html","searchKeys":["jitter","open override val jitter: Double?","live.hms.video.connection.degredation.Video.jitter"]},{"name":"open override val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.Audio.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","open override val jitterBufferDelay: Double?","live.hms.video.connection.degredation.Audio.jitterBufferDelay"]},{"name":"open override val jitterBufferDelay: Double?","description":"live.hms.video.connection.degredation.Video.jitterBufferDelay","location":"lib/live.hms.video.connection.degredation/-video/jitter-buffer-delay.html","searchKeys":["jitterBufferDelay","open override val jitterBufferDelay: Double?","live.hms.video.connection.degredation.Video.jitterBufferDelay"]},{"name":"open override val jitter_buffer_delay: Double","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.jitter_buffer_delay","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/jitter_buffer_delay.html","searchKeys":["jitter_buffer_delay","open override val jitter_buffer_delay: Double","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.jitter_buffer_delay"]},{"name":"open override val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.Audio.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-audio/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","open override val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.Audio.lastPacketReceivedTimestamp"]},{"name":"open override val lastPacketReceivedTimestamp: Double?","description":"live.hms.video.connection.degredation.Video.lastPacketReceivedTimestamp","location":"lib/live.hms.video.connection.degredation/-video/last-packet-received-timestamp.html","searchKeys":["lastPacketReceivedTimestamp","open override val lastPacketReceivedTimestamp: Double?","live.hms.video.connection.degredation.Video.lastPacketReceivedTimestamp"]},{"name":"open override val message: String","description":"live.hms.video.error.HMSException.message","location":"lib/live.hms.video.error/-h-m-s-exception/message.html","searchKeys":["message","open override val message: String","live.hms.video.error.HMSException.message"]},{"name":"open override val packetsLost: Int?","description":"live.hms.video.connection.degredation.Audio.packetsLost","location":"lib/live.hms.video.connection.degredation/-audio/packets-lost.html","searchKeys":["packetsLost","open override val packetsLost: Int?","live.hms.video.connection.degredation.Audio.packetsLost"]},{"name":"open override val packetsLost: Int?","description":"live.hms.video.connection.degredation.Video.packetsLost","location":"lib/live.hms.video.connection.degredation/-video/packets-lost.html","searchKeys":["packetsLost","open override val packetsLost: Int?","live.hms.video.connection.degredation.Video.packetsLost"]},{"name":"open override val packetsReceived: Long?","description":"live.hms.video.connection.degredation.Audio.packetsReceived","location":"lib/live.hms.video.connection.degredation/-audio/packets-received.html","searchKeys":["packetsReceived","open override val packetsReceived: Long?","live.hms.video.connection.degredation.Audio.packetsReceived"]},{"name":"open override val packetsReceived: Long?","description":"live.hms.video.connection.degredation.Video.packetsReceived","location":"lib/live.hms.video.connection.degredation/-video/packets-received.html","searchKeys":["packetsReceived","open override val packetsReceived: Long?","live.hms.video.connection.degredation.Video.packetsReceived"]},{"name":"open override val pause_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/pause_count.html","searchKeys":["pause_count","open override val pause_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_count"]},{"name":"open override val pause_duration_seconds: Float","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_duration_seconds","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/pause_duration_seconds.html","searchKeys":["pause_duration_seconds","open override val pause_duration_seconds: Float","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.pause_duration_seconds"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Audio.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-audio/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Audio.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.remoteTimestamp"]},{"name":"open override val remoteTimestamp: Double?","description":"live.hms.video.connection.degredation.Video.remoteTimestamp","location":"lib/live.hms.video.connection.degredation/-video/remote-timestamp.html","searchKeys":["remoteTimestamp","open override val remoteTimestamp: Double?","live.hms.video.connection.degredation.Video.remoteTimestamp"]},{"name":"open override val source: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/source.html","searchKeys":["source","open override val source: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.source"]},{"name":"open override val source: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.source","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/source.html","searchKeys":["source","open override val source: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.source"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Audio.ssrc","location":"lib/live.hms.video.connection.degredation/-audio/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Audio.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.ssrc","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.ssrc"]},{"name":"open override val ssrc: Long?","description":"live.hms.video.connection.degredation.Video.ssrc","location":"lib/live.hms.video.connection.degredation/-video/ssrc.html","searchKeys":["ssrc","open override val ssrc: Long?","live.hms.video.connection.degredation.Video.ssrc"]},{"name":"open override val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/ssrc.html","searchKeys":["ssrc","open override val ssrc: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.ssrc"]},{"name":"open override val ssrc: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.ssrc","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/ssrc.html","searchKeys":["ssrc","open override val ssrc: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.ssrc"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.timestamp"]},{"name":"open override val timestamp: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.timestamp","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/timestamp.html","searchKeys":["timestamp","open override val timestamp: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.timestamp"]},{"name":"open override val timestampUs: Double?","description":"live.hms.video.connection.degredation.Audio.timestampUs","location":"lib/live.hms.video.connection.degredation/-audio/timestamp-us.html","searchKeys":["timestampUs","open override val timestampUs: Double?","live.hms.video.connection.degredation.Audio.timestampUs"]},{"name":"open override val timestampUs: Double?","description":"live.hms.video.connection.degredation.Video.timestampUs","location":"lib/live.hms.video.connection.degredation/-video/timestamp-us.html","searchKeys":["timestampUs","open override val timestampUs: Double?","live.hms.video.connection.degredation.Video.timestampUs"]},{"name":"open override val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-publish/total-packets-lost.html","searchKeys":["totalPacketsLost","open override val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesPublish.totalPacketsLost"]},{"name":"open override val totalPacketsLost: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total-packets-lost.html","searchKeys":["totalPacketsLost","open override val totalPacketsLost: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketsLost"]},{"name":"open override val total_nack_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_nack_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/total_nack_count.html","searchKeys":["total_nack_count","open override val total_nack_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_nack_count"]},{"name":"open override val total_packets_lost: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_lost","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_packets_lost.html","searchKeys":["total_packets_lost","open override val total_packets_lost: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_lost"]},{"name":"open override val total_packets_received: Long","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_received","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_packets_received.html","searchKeys":["total_packets_received","open override val total_packets_received: Long","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_packets_received"]},{"name":"open override val total_pli_count: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_pli_count","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-subscribe/total_pli_count.html","searchKeys":["total_pli_count","open override val total_pli_count: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesSubscribe.total_pli_count"]},{"name":"open override val total_samples_duration: Float","description":"live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_samples_duration","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-samples-subscribe/total_samples_duration.html","searchKeys":["total_samples_duration","open override val total_samples_duration: Float","live.hms.video.connection.stats.clientside.model.AudioSamplesSubscribe.total_samples_duration"]},{"name":"open override val trackId: String","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/track-id.html","searchKeys":["trackId","open override val trackId: String","live.hms.video.connection.stats.clientside.model.AudioAnalytics.trackId"]},{"name":"open override val trackId: String","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.trackId","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/track-id.html","searchKeys":["trackId","open override val trackId: String","live.hms.video.connection.stats.clientside.model.VideoAnalytics.trackId"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Audio.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-audio/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Audio.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.trackIdentifier"]},{"name":"open override val trackIdentifier: String?","description":"live.hms.video.connection.degredation.Video.trackIdentifier","location":"lib/live.hms.video.connection.degredation/-video/track-identifier.html","searchKeys":["trackIdentifier","open override val trackIdentifier: String?","live.hms.video.connection.degredation.Video.trackIdentifier"]},{"name":"open override val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSAudioTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-audio-track/type.html","searchKeys":["type","open override val type: HMSTrackType","live.hms.video.media.tracks.HMSAudioTrack.type"]},{"name":"open override val type: HMSTrackType","description":"live.hms.video.media.tracks.HMSVideoTrack.type","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/type.html","searchKeys":["type","open override val type: HMSTrackType","live.hms.video.media.tracks.HMSVideoTrack.type"]},{"name":"open override var audioTrack: HMSLocalAudioTrack? = null","description":"live.hms.video.sdk.models.HMSLocalPeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/audio-track.html","searchKeys":["audioTrack","open override var audioTrack: HMSLocalAudioTrack? = null","live.hms.video.sdk.models.HMSLocalPeer.audioTrack"]},{"name":"open override var audioTrack: HMSRemoteAudioTrack? = null","description":"live.hms.video.sdk.models.HMSRemotePeer.audioTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/audio-track.html","searchKeys":["audioTrack","open override var audioTrack: HMSRemoteAudioTrack? = null","live.hms.video.sdk.models.HMSRemotePeer.audioTrack"]},{"name":"open override var isDegraded: Boolean = false","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.isDegraded","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/is-degraded.html","searchKeys":["isDegraded","open override var isDegraded: Boolean = false","live.hms.video.media.tracks.HMSRemoteVideoTrack.isDegraded"]},{"name":"open override var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","open override var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteAudioTrack.isPlaybackAllowed"]},{"name":"open override var isPlaybackAllowed: Boolean","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.isPlaybackAllowed","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/is-playback-allowed.html","searchKeys":["isPlaybackAllowed","open override var isPlaybackAllowed: Boolean","live.hms.video.media.tracks.HMSRemoteVideoTrack.isPlaybackAllowed"]},{"name":"open override var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteAudioTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-audio-track/ssrc.html","searchKeys":["ssrc","open override var ssrc: Long","live.hms.video.media.tracks.HMSRemoteAudioTrack.ssrc"]},{"name":"open override var ssrc: Long","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.ssrc","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/ssrc.html","searchKeys":["ssrc","open override var ssrc: Long","live.hms.video.media.tracks.HMSRemoteVideoTrack.ssrc"]},{"name":"open override var videoTrack: HMSLocalVideoTrack? = null","description":"live.hms.video.sdk.models.HMSLocalPeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-local-peer/video-track.html","searchKeys":["videoTrack","open override var videoTrack: HMSLocalVideoTrack? = null","live.hms.video.sdk.models.HMSLocalPeer.videoTrack"]},{"name":"open override var videoTrack: HMSRemoteVideoTrack? = null","description":"live.hms.video.sdk.models.HMSRemotePeer.videoTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-remote-peer/video-track.html","searchKeys":["videoTrack","open override var videoTrack: HMSRemoteVideoTrack? = null","live.hms.video.sdk.models.HMSRemotePeer.videoTrack"]},{"name":"open suspend override fun init()","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.init","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/init.html","searchKeys":["init","open suspend override fun init()","live.hms.video.plugin.video.utils.HMSBitmapPlugin.init"]},{"name":"open val audioDevices: Set","description":"live.hms.video.audio.HMSAudioManagerLegacy.audioDevices","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/audio-devices.html","searchKeys":["audioDevices","open val audioDevices: Set","live.hms.video.audio.HMSAudioManagerLegacy.audioDevices"]},{"name":"open val isStarted: Boolean","description":"live.hms.video.audio.HMSAudioManagerLegacy.isStarted","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/is-started.html","searchKeys":["isStarted","open val isStarted: Boolean","live.hms.video.audio.HMSAudioManagerLegacy.isStarted"]},{"name":"open val ncLogTag: String","description":"live.hms.video.factories.noisecancellation.NoiseCancellation.ncLogTag","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation/nc-log-tag.html","searchKeys":["ncLogTag","open val ncLogTag: String","live.hms.video.factories.noisecancellation.NoiseCancellation.ncLogTag"]},{"name":"open val selectedAudioDevice: HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioManagerLegacy.selectedAudioDevice","location":"lib/live.hms.video.audio/-h-m-s-audio-manager-legacy/selected-audio-device.html","searchKeys":["selectedAudioDevice","open val selectedAudioDevice: HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioManagerLegacy.selectedAudioDevice"]},{"name":"open var height: Int","description":"live.hms.video.utils.YuvFrame.height","location":"lib/live.hms.video.utils/-yuv-frame/height.html","searchKeys":["height","open var height: Int","live.hms.video.utils.YuvFrame.height"]},{"name":"open var isDegraded: Boolean = false","description":"live.hms.video.media.tracks.HMSVideoTrack.isDegraded","location":"lib/live.hms.video.media.tracks/-h-m-s-video-track/is-degraded.html","searchKeys":["isDegraded","open var isDegraded: Boolean = false","live.hms.video.media.tracks.HMSVideoTrack.isDegraded"]},{"name":"open var nv21Buffer: Array","description":"live.hms.video.utils.YuvFrame.nv21Buffer","location":"lib/live.hms.video.utils/-yuv-frame/nv21-buffer.html","searchKeys":["nv21Buffer","open var nv21Buffer: Array","live.hms.video.utils.YuvFrame.nv21Buffer"]},{"name":"open var packetLoss: Long = 0","description":"live.hms.video.connection.degredation.Track.LocalTrack.packetLoss","location":"lib/live.hms.video.connection.degredation/-track/-local-track/packet-loss.html","searchKeys":["packetLoss","open var packetLoss: Long = 0","live.hms.video.connection.degredation.Track.LocalTrack.packetLoss"]},{"name":"open var rotationDegree: Int","description":"live.hms.video.utils.YuvFrame.rotationDegree","location":"lib/live.hms.video.utils/-yuv-frame/rotation-degree.html","searchKeys":["rotationDegree","open var rotationDegree: Int","live.hms.video.utils.YuvFrame.rotationDegree"]},{"name":"open var timestamp: Long","description":"live.hms.video.utils.YuvFrame.timestamp","location":"lib/live.hms.video.utils/-yuv-frame/timestamp.html","searchKeys":["timestamp","open var timestamp: Long","live.hms.video.utils.YuvFrame.timestamp"]},{"name":"open var width: Int","description":"live.hms.video.utils.YuvFrame.width","location":"lib/live.hms.video.utils/-yuv-frame/width.html","searchKeys":["width","open var width: Int","live.hms.video.utils.YuvFrame.width"]},{"name":"paused","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.paused","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/paused/index.html","searchKeys":["paused","paused","live.hms.video.sdk.peerlist.models.BeamRecordingStates.paused"]},{"name":"resultsupdated","description":"live.hms.video.polls.models.HMSPollUpdateType.resultsupdated","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/resultsupdated/index.html","searchKeys":["resultsupdated","resultsupdated","live.hms.video.polls.models.HMSPollUpdateType.resultsupdated"]},{"name":"resumed","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.resumed","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/resumed/index.html","searchKeys":["resumed","resumed","live.hms.video.sdk.peerlist.models.BeamRecordingStates.resumed"]},{"name":"sealed class AudioManagerUtil","description":"live.hms.video.audio.manager.AudioManagerUtil","location":"lib/live.hms.video.audio.manager/-audio-manager-util/index.html","searchKeys":["AudioManagerUtil","sealed class AudioManagerUtil","live.hms.video.audio.manager.AudioManagerUtil"]},{"name":"sealed class AvailabilityStatus","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/index.html","searchKeys":["AvailabilityStatus","sealed class AvailabilityStatus","live.hms.video.factories.noisecancellation.AvailabilityStatus"]},{"name":"sealed class ConnectionInfo : WebrtcStats","description":"live.hms.video.connection.degredation.ConnectionInfo","location":"lib/live.hms.video.connection.degredation/-connection-info/index.html","searchKeys":["ConnectionInfo","sealed class ConnectionInfo : WebrtcStats","live.hms.video.connection.degredation.ConnectionInfo"]},{"name":"sealed class Features","description":"live.hms.video.sdk.featureflags.Features","location":"lib/live.hms.video.sdk.featureflags/-features/index.html","searchKeys":["Features","sealed class Features","live.hms.video.sdk.featureflags.Features"]},{"name":"sealed class HMSLocalStats : HMSStats","description":"live.hms.video.connection.stats.HMSStats.HMSLocalStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/-h-m-s-local-stats/index.html","searchKeys":["HMSLocalStats","sealed class HMSLocalStats : HMSStats","live.hms.video.connection.stats.HMSStats.HMSLocalStats"]},{"name":"sealed class HMSRemoteStats : HMSStats","description":"live.hms.video.connection.stats.HMSStats.HMSRemoteStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/-h-m-s-remote-stats/index.html","searchKeys":["HMSRemoteStats","sealed class HMSRemoteStats : HMSStats","live.hms.video.connection.stats.HMSStats.HMSRemoteStats"]},{"name":"sealed class HMSStats","description":"live.hms.video.connection.stats.HMSStats","location":"lib/live.hms.video.connection.stats/-h-m-s-stats/index.html","searchKeys":["HMSStats","sealed class HMSStats","live.hms.video.connection.stats.HMSStats"]},{"name":"sealed class HMSWhiteboardUpdate","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/index.html","searchKeys":["HMSWhiteboardUpdate","sealed class HMSWhiteboardUpdate","live.hms.video.whiteboard.HMSWhiteboardUpdate"]},{"name":"sealed class Track : WebrtcStats","description":"live.hms.video.connection.degredation.Track","location":"lib/live.hms.video.connection.degredation/-track/index.html","searchKeys":["Track","sealed class Track : WebrtcStats","live.hms.video.connection.degredation.Track"]},{"name":"sealed class WebrtcStats","description":"live.hms.video.connection.degredation.WebrtcStats","location":"lib/live.hms.video.connection.degredation/-webrtc-stats/index.html","searchKeys":["WebrtcStats","sealed class WebrtcStats","live.hms.video.connection.degredation.WebrtcStats"]},{"name":"shortAnswer","description":"live.hms.video.polls.models.question.HMSPollQuestionType.shortAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/short-answer/index.html","searchKeys":["shortAnswer","shortAnswer","live.hms.video.polls.models.question.HMSPollQuestionType.shortAnswer"]},{"name":"singleChoice","description":"live.hms.video.polls.models.question.HMSPollQuestionType.singleChoice","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-type/single-choice/index.html","searchKeys":["singleChoice","singleChoice","live.hms.video.polls.models.question.HMSPollQuestionType.singleChoice"]},{"name":"started","description":"live.hms.video.polls.models.HMSPollUpdateType.started","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/started/index.html","searchKeys":["started","started","live.hms.video.polls.models.HMSPollUpdateType.started"]},{"name":"started","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.started","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/started/index.html","searchKeys":["started","started","live.hms.video.sdk.peerlist.models.BeamRecordingStates.started"]},{"name":"started","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.started","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/started/index.html","searchKeys":["started","started","live.hms.video.sdk.peerlist.models.BeamStreamingStates.started"]},{"name":"stopped","description":"live.hms.video.polls.models.HMSPollUpdateType.stopped","location":"lib/live.hms.video.polls.models/-h-m-s-poll-update-type/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.polls.models.HMSPollUpdateType.stopped"]},{"name":"stopped","description":"live.hms.video.sdk.peerlist.models.BeamRecordingStates.stopped","location":"lib/live.hms.video.sdk.peerlist.models/-beam-recording-states/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.sdk.peerlist.models.BeamRecordingStates.stopped"]},{"name":"stopped","description":"live.hms.video.sdk.peerlist.models.BeamStreamingStates.stopped","location":"lib/live.hms.video.sdk.peerlist.models/-beam-streaming-states/stopped/index.html","searchKeys":["stopped","stopped","live.hms.video.sdk.peerlist.models.BeamStreamingStates.stopped"]},{"name":"suspend fun get(): T","description":"live.hms.video.factories.SafeVariable.get","location":"lib/live.hms.video.factories/-safe-variable/get.html","searchKeys":["get","suspend fun get(): T","live.hms.video.factories.SafeVariable.get"]},{"name":"suspend fun getDownloadSpeedInKilobytesPerSecond(networkHealth: NetworkHealth): Double?","description":"live.hms.video.sdk.SpeedTest.getDownloadSpeedInKilobytesPerSecond","location":"lib/live.hms.video.sdk/-speed-test/get-download-speed-in-kilobytes-per-second.html","searchKeys":["getDownloadSpeedInKilobytesPerSecond","suspend fun getDownloadSpeedInKilobytesPerSecond(networkHealth: NetworkHealth): Double?","live.hms.video.sdk.SpeedTest.getDownloadSpeedInKilobytesPerSecond"]},{"name":"suspend fun setSettings(newSettings: HMSAudioTrackSettings)","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.setSettings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/set-settings.html","searchKeys":["setSettings","suspend fun setSettings(newSettings: HMSAudioTrackSettings)","live.hms.video.media.tracks.HMSLocalAudioTrack.setSettings"]},{"name":"suspend fun setSettings(newSettings: HMSVideoTrackSettings)","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.setSettings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/set-settings.html","searchKeys":["setSettings","suspend fun setSettings(newSettings: HMSVideoTrackSettings)","live.hms.video.media.tracks.HMSLocalVideoTrack.setSettings"]},{"name":"val AOSP_ACOUSTIC_ECHO_CANCELER: UUID","description":"live.hms.video.utils.WertcAudioUtils.Companion.AOSP_ACOUSTIC_ECHO_CANCELER","location":"lib/live.hms.video.utils/-wertc-audio-utils/-companion/-a-o-s-p_-a-c-o-u-s-t-i-c_-e-c-h-o_-c-a-n-c-e-l-e-r.html","searchKeys":["AOSP_ACOUSTIC_ECHO_CANCELER","val AOSP_ACOUSTIC_ECHO_CANCELER: UUID","live.hms.video.utils.WertcAudioUtils.Companion.AOSP_ACOUSTIC_ECHO_CANCELER"]},{"name":"val BLUETOOTH_CONNECT_PERMISSION: String","description":"live.hms.video.audio.BluetoothPermissionHandler.BLUETOOTH_CONNECT_PERMISSION","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/-b-l-u-e-t-o-o-t-h_-c-o-n-n-e-c-t_-p-e-r-m-i-s-s-i-o-n.html","searchKeys":["BLUETOOTH_CONNECT_PERMISSION","val BLUETOOTH_CONNECT_PERMISSION: String","live.hms.video.audio.BluetoothPermissionHandler.BLUETOOTH_CONNECT_PERMISSION"]},{"name":"val DEFAULT_BLUR_PERCENTAGE: Int = 75","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.DEFAULT_BLUR_PERCENTAGE","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-d-e-f-a-u-l-t_-b-l-u-r_-p-e-r-c-e-n-t-a-g-e.html","searchKeys":["DEFAULT_BLUR_PERCENTAGE","val DEFAULT_BLUR_PERCENTAGE: Int = 75","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.DEFAULT_BLUR_PERCENTAGE"]},{"name":"val DEVICE_INFO: Array","description":"live.hms.video.utils.HMSLogger.DEVICE_INFO","location":"lib/live.hms.video.utils/-h-m-s-logger/-d-e-v-i-c-e_-i-n-f-o.html","searchKeys":["DEVICE_INFO","val DEVICE_INFO: Array","live.hms.video.utils.HMSLogger.DEVICE_INFO"]},{"name":"val DEVICE_INFO: Array","description":"live.hms.video.utils.LogUtils.DEVICE_INFO","location":"lib/live.hms.video.utils/-log-utils/-d-e-v-i-c-e_-i-n-f-o.html","searchKeys":["DEVICE_INFO","val DEVICE_INFO: Array","live.hms.video.utils.LogUtils.DEVICE_INFO"]},{"name":"val LOCAL_PEER: String","description":"live.hms.video.connection.degredation.Peer.Companion.LOCAL_PEER","location":"lib/live.hms.video.connection.degredation/-peer/-companion/-l-o-c-a-l_-p-e-e-r.html","searchKeys":["LOCAL_PEER","val LOCAL_PEER: String","live.hms.video.connection.degredation.Peer.Companion.LOCAL_PEER"]},{"name":"val PROCESSING_CROP_TO_SQUARE: Int = 1","description":"live.hms.video.utils.YuvFrame.PROCESSING_CROP_TO_SQUARE","location":"lib/live.hms.video.utils/-yuv-frame/-p-r-o-c-e-s-s-i-n-g_-c-r-o-p_-t-o_-s-q-u-a-r-e.html","searchKeys":["PROCESSING_CROP_TO_SQUARE","val PROCESSING_CROP_TO_SQUARE: Int = 1","live.hms.video.utils.YuvFrame.PROCESSING_CROP_TO_SQUARE"]},{"name":"val PROCESSING_NONE: Int = 0","description":"live.hms.video.utils.YuvFrame.PROCESSING_NONE","location":"lib/live.hms.video.utils/-yuv-frame/-p-r-o-c-e-s-s-i-n-g_-n-o-n-e.html","searchKeys":["PROCESSING_NONE","val PROCESSING_NONE: Int = 0","live.hms.video.utils.YuvFrame.PROCESSING_NONE"]},{"name":"val PUBLISH_CONNECTION: String","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.PUBLISH_CONNECTION","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/-companion/-p-u-b-l-i-s-h_-c-o-n-n-e-c-t-i-o-n.html","searchKeys":["PUBLISH_CONNECTION","val PUBLISH_CONNECTION: String","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.Companion.PUBLISH_CONNECTION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.SAMPLE_DURATION"]},{"name":"val SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["SAMPLE_DURATION","val SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.SAMPLE_DURATION"]},{"name":"val SOFTWARE_IMPLEMENTATION_PREFIXES: Array","description":"live.hms.video.utils.HmsUtilities.Companion.SOFTWARE_IMPLEMENTATION_PREFIXES","location":"lib/live.hms.video.utils/-hms-utilities/-companion/-s-o-f-t-w-a-r-e_-i-m-p-l-e-m-e-n-t-a-t-i-o-n_-p-r-e-f-i-x-e-s.html","searchKeys":["SOFTWARE_IMPLEMENTATION_PREFIXES","val SOFTWARE_IMPLEMENTATION_PREFIXES: Array","live.hms.video.utils.HmsUtilities.Companion.SOFTWARE_IMPLEMENTATION_PREFIXES"]},{"name":"val SUBSCRIBE_CONNECTION: String","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.SUBSCRIBE_CONNECTION","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/-companion/-s-u-b-s-c-r-i-b-e_-c-o-n-n-e-c-t-i-o-n.html","searchKeys":["SUBSCRIBE_CONNECTION","val SUBSCRIBE_CONNECTION: String","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.Companion.SUBSCRIBE_CONNECTION"]},{"name":"val TAG: String","description":"live.hms.video.media.tracks.HMSRemoteVideoTrack.TAG","location":"lib/live.hms.video.media.tracks/-h-m-s-remote-video-track/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.video.media.tracks.HMSRemoteVideoTrack.TAG"]},{"name":"val action: String","description":"live.hms.video.error.HMSException.action","location":"lib/live.hms.video.error/-h-m-s-exception/action.html","searchKeys":["action","val action: String","live.hms.video.error.HMSException.action"]},{"name":"val addr: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.addr","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/addr.html","searchKeys":["addr","val addr: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.addr"]},{"name":"val admin: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.admin","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/admin.html","searchKeys":["admin","val admin: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.admin"]},{"name":"val alertErrorBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-bright.html","searchKeys":["alertErrorBright","val alertErrorBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBright"]},{"name":"val alertErrorBrighter: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBrighter","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-brighter.html","searchKeys":["alertErrorBrighter","val alertErrorBrighter: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorBrighter"]},{"name":"val alertErrorDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-default.html","searchKeys":["alertErrorDefault","val alertErrorDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDefault"]},{"name":"val alertErrorDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-error-dim.html","searchKeys":["alertErrorDim","val alertErrorDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertErrorDim"]},{"name":"val alertSuccess: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertSuccess","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-success.html","searchKeys":["alertSuccess","val alertSuccess: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertSuccess"]},{"name":"val alertWarning: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertWarning","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/alert-warning.html","searchKeys":["alertWarning","val alertWarning: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.alertWarning"]},{"name":"val allStats: Map","description":"live.hms.video.connection.degredation.StatsBundle.allStats","location":"lib/live.hms.video.connection.degredation/-stats-bundle/all-stats.html","searchKeys":["allStats","val allStats: Map","live.hms.video.connection.degredation.StatsBundle.allStats"]},{"name":"val allowPinningMessages: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.allowPinningMessages","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/allow-pinning-messages.html","searchKeys":["allowPinningMessages","val allowPinningMessages: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.allowPinningMessages"]},{"name":"val allowed: ArrayList","description":"live.hms.video.sdk.models.role.PublishParams.allowed","location":"lib/live.hms.video.sdk.models.role/-publish-params/allowed.html","searchKeys":["allowed","val allowed: ArrayList","live.hms.video.sdk.models.role.PublishParams.allowed"]},{"name":"val anonymous: Boolean","description":"live.hms.video.polls.HMSPollBuilder.anonymous","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean","live.hms.video.polls.HMSPollBuilder.anonymous"]},{"name":"val anonymous: Boolean","description":"live.hms.video.polls.models.HmsPoll.anonymous","location":"lib/live.hms.video.polls.models/-hms-poll/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean","live.hms.video.polls.models.HmsPoll.anonymous"]},{"name":"val anonymous: Boolean = false","description":"live.hms.video.polls.models.HmsPollCreationParams.anonymous","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/anonymous.html","searchKeys":["anonymous","val anonymous: Boolean = false","live.hms.video.polls.models.HmsPollCreationParams.anonymous"]},{"name":"val answerChanged: Boolean","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.answerChanged","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/answer-changed.html","searchKeys":["answerChanged","val answerChanged: Boolean","live.hms.video.polls.models.network.HMSPollQuestionResponse.answerChanged"]},{"name":"val answerLongMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.answerLongMinLength","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/answer-long-min-length.html","searchKeys":["answerLongMinLength","val answerLongMinLength: Long? = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.answerLongMinLength"]},{"name":"val answerLongMinLength: Long? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.answerLongMinLength","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/answer-long-min-length.html","searchKeys":["answerLongMinLength","val answerLongMinLength: Long? = null","live.hms.video.polls.models.question.HMSPollQuestion.answerLongMinLength"]},{"name":"val answerShortMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HMSPollQuestion.answerShortMinLength","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/answer-short-min-length.html","searchKeys":["answerShortMinLength","val answerShortMinLength: Long? = 1","live.hms.video.polls.models.question.HMSPollQuestion.answerShortMinLength"]},{"name":"val answerShortMinLength: Long? = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.answerShortMinLength","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/answer-short-min-length.html","searchKeys":["answerShortMinLength","val answerShortMinLength: Long? = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.answerShortMinLength"]},{"name":"val answerText: String","description":"live.hms.video.polls.models.answer.HmsPollAnswer.answerText","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/answer-text.html","searchKeys":["answerText","val answerText: String","live.hms.video.polls.models.answer.HmsPollAnswer.answerText"]},{"name":"val appId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.appId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/app-id.html","searchKeys":["appId","val appId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.appId"]},{"name":"val applicationContext: Context","description":"live.hms.video.sdk.HMSSDK.applicationContext","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/application-context.html","searchKeys":["applicationContext","val applicationContext: Context","live.hms.video.sdk.HMSSDK.applicationContext"]},{"name":"val attemptedTimes: Int","description":"live.hms.video.polls.models.PollStatsQuestions.attemptedTimes","location":"lib/live.hms.video.polls.models/-poll-stats-questions/attempted-times.html","searchKeys":["attemptedTimes","val attemptedTimes: Int","live.hms.video.polls.models.PollStatsQuestions.attemptedTimes"]},{"name":"val audio: AudioParams?","description":"live.hms.video.sdk.models.role.PublishParams.audio","location":"lib/live.hms.video.sdk.models.role/-publish-params/audio.html","searchKeys":["audio","val audio: AudioParams?","live.hms.video.sdk.models.role.PublishParams.audio"]},{"name":"val audio: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.audio","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/audio.html","searchKeys":["audio","val audio: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.audio"]},{"name":"val audio: List","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.audio","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/audio.html","searchKeys":["audio","val audio: List","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.audio"]},{"name":"val audioInputReport: AudioInputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.audioInputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/audio-input-report.html","searchKeys":["audioInputReport","val audioInputReport: AudioInputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.audioInputReport"]},{"name":"val audioLevel: Double?","description":"live.hms.video.connection.degredation.Audio.audioLevel","location":"lib/live.hms.video.connection.degredation/-audio/audio-level.html","searchKeys":["audioLevel","val audioLevel: Double?","live.hms.video.connection.degredation.Audio.audioLevel"]},{"name":"val audioLevelList: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioLevelList","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-level-list.html","searchKeys":["audioLevelList","val audioLevelList: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioLevelList"]},{"name":"val audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.audioManagerDeviceChangeListener","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/audio-manager-device-change-listener.html","searchKeys":["audioManagerDeviceChangeListener","val audioManagerDeviceChangeListener: HMSAudioManager.AudioManagerDeviceChangeListener","live.hms.video.audio.manager.HMSAudioManagerApi31.audioManagerDeviceChangeListener"]},{"name":"val audioMode: HMSAudioTrackSettings.HMSAudioMode","description":"live.hms.video.media.settings.HMSAudioTrackSettings.audioMode","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/audio-mode.html","searchKeys":["audioMode","val audioMode: HMSAudioTrackSettings.HMSAudioMode","live.hms.video.media.settings.HMSAudioTrackSettings.audioMode"]},{"name":"val audioOutputReport: AudioOutputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.audioOutputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/audio-output-report.html","searchKeys":["audioOutputReport","val audioOutputReport: AudioOutputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.audioOutputReport"]},{"name":"val audioSample: List","description":"live.hms.video.connection.stats.clientside.model.AudioAnalytics.audioSample","location":"lib/live.hms.video.connection.stats.clientside.model/-audio-analytics/audio-sample.html","searchKeys":["audioSample","val audioSample: List","live.hms.video.connection.stats.clientside.model.AudioAnalytics.audioSample"]},{"name":"val audioSettings: HMSAudioTrackSettings?","description":"live.hms.video.media.settings.HMSTrackSettings.audioSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/audio-settings.html","searchKeys":["audioSettings","val audioSettings: HMSAudioTrackSettings?","live.hms.video.media.settings.HMSTrackSettings.audioSettings"]},{"name":"val authtoken: String","description":"live.hms.video.sdk.models.HMSConfig.authtoken","location":"lib/live.hms.video.sdk.models/-h-m-s-config/authtoken.html","searchKeys":["authtoken","val authtoken: String","live.hms.video.sdk.models.HMSConfig.authtoken"]},{"name":"val availableIncomingBitrate: Double?","description":"live.hms.video.connection.degredation.Peer.availableIncomingBitrate","location":"lib/live.hms.video.connection.degredation/-peer/available-incoming-bitrate.html","searchKeys":["availableIncomingBitrate","val availableIncomingBitrate: Double?","live.hms.video.connection.degredation.Peer.availableIncomingBitrate"]},{"name":"val availableOutgoingBitrate: Double?","description":"live.hms.video.connection.degredation.Peer.availableOutgoingBitrate","location":"lib/live.hms.video.connection.degredation/-peer/available-outgoing-bitrate.html","searchKeys":["availableOutgoingBitrate","val availableOutgoingBitrate: Double?","live.hms.video.connection.degredation.Peer.availableOutgoingBitrate"]},{"name":"val averageScore: Float?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.averageScore","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/average-score.html","searchKeys":["averageScore","val averageScore: Float?","live.hms.video.polls.network.HMSPollLeaderboardSummary.averageScore"]},{"name":"val averageTime: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.averageTime","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/average-time.html","searchKeys":["averageTime","val averageTime: Long?","live.hms.video.polls.network.HMSPollLeaderboardSummary.averageTime"]},{"name":"val avgAvailableOutgoingBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","val avgAvailableOutgoingBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgAvailableOutgoingBitrateBps"]},{"name":"val avgAvailableOutgoingBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgAvailableOutgoingBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/avg-available-outgoing-bitrate-bps.html","searchKeys":["avgAvailableOutgoingBitrateBps","val avgAvailableOutgoingBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgAvailableOutgoingBitrateBps"]},{"name":"val avgBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","val avgBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.avgBitrateBps"]},{"name":"val avgBitrateBps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgBitrateBps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/avg-bitrate-bps.html","searchKeys":["avgBitrateBps","val avgBitrateBps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.avgBitrateBps"]},{"name":"val avgScore: Float?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.avgScore","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/avg-score.html","searchKeys":["avgScore","val avgScore: Float?","live.hms.video.polls.network.HMSPollLeaderboardResponse.avgScore"]},{"name":"val avgTime: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.avgTime","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/avg-time.html","searchKeys":["avgTime","val avgTime: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.avgTime"]},{"name":"val avg_fps: Int","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avg_fps","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/avg_fps.html","searchKeys":["avg_fps","val avg_fps: Int","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.avg_fps"]},{"name":"val backgroundDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/background-default.html","searchKeys":["backgroundDefault","val backgroundDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDefault"]},{"name":"val backgroundDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/background-dim.html","searchKeys":["backgroundDim","val backgroundDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.backgroundDim"]},{"name":"val backgroundMedia: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.backgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-virtual-background/background-media.html","searchKeys":["backgroundMedia","val backgroundMedia: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground.backgroundMedia"]},{"name":"val backgroundMedia: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.backgroundMedia","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-virtual-background/background-media.html","searchKeys":["backgroundMedia","val backgroundMedia: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground.backgroundMedia"]},{"name":"val bandWidth: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.bandWidth","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/band-width.html","searchKeys":["bandWidth","val bandWidth: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.bandWidth"]},{"name":"val bandwidthMs: Float","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.bandwidthMs","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/bandwidth-ms.html","searchKeys":["bandwidthMs","val bandwidthMs: Float","live.hms.video.connection.stats.clientside.model.QualityLimitation.bandwidthMs"]},{"name":"val batteryPercentage: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.batteryPercentage","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/battery-percentage.html","searchKeys":["batteryPercentage","val batteryPercentage: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.batteryPercentage"]},{"name":"val bitRate: Int","description":"live.hms.video.sdk.models.role.AudioParams.bitRate","location":"lib/live.hms.video.sdk.models.role/-audio-params/bit-rate.html","searchKeys":["bitRate","val bitRate: Int","live.hms.video.sdk.models.role.AudioParams.bitRate"]},{"name":"val bitRate: Int","description":"live.hms.video.sdk.models.role.VideoParams.bitRate","location":"lib/live.hms.video.sdk.models.role/-video-params/bit-rate.html","searchKeys":["bitRate","val bitRate: Int","live.hms.video.sdk.models.role.VideoParams.bitRate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSLocalAudioStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSRemoteAudioStats.bitrate"]},{"name":"val bitrate: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.bitrate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/bitrate.html","searchKeys":["bitrate","val bitrate: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.bitrate"]},{"name":"val bitrate: Int","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.bitrate","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/bitrate.html","searchKeys":["bitrate","val bitrate: Int","live.hms.video.media.settings.HMSSimulcastSettings.Item.bitrate"]},{"name":"val bitrateReceived: Double","description":"live.hms.video.connection.stats.HMSRTCStats.bitrateReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bitrate-received.html","searchKeys":["bitrateReceived","val bitrateReceived: Double","live.hms.video.connection.stats.HMSRTCStats.bitrateReceived"]},{"name":"val bitrateSent: Double","description":"live.hms.video.connection.stats.HMSRTCStats.bitrateSent","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bitrate-sent.html","searchKeys":["bitrateSent","val bitrateSent: Double","live.hms.video.connection.stats.HMSRTCStats.bitrateSent"]},{"name":"val borderBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-bright.html","searchKeys":["borderBright","val borderBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderBright"]},{"name":"val borderDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-default.html","searchKeys":["borderDefault","val borderDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderDefault"]},{"name":"val borderLight: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderLight","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/border-light.html","searchKeys":["borderLight","val borderLight: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.borderLight"]},{"name":"val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.brb","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/brb.html","searchKeys":["brb","val brb: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Brb?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.brb"]},{"name":"val bringToStageLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.bringToStageLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/bring-to-stage-label.html","searchKeys":["bringToStageLabel","val bringToStageLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.bringToStageLabel"]},{"name":"val browser: Browser?","description":"live.hms.video.sdk.peerlist.models.Recording.browser","location":"lib/live.hms.video.sdk.peerlist.models/-recording/browser.html","searchKeys":["browser","val browser: Browser?","live.hms.video.sdk.peerlist.models.Recording.browser"]},{"name":"val browserRecording: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.browserRecording","location":"lib/live.hms.video.sdk.models.role/-permissions-params/browser-recording.html","searchKeys":["browserRecording","val browserRecording: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.browserRecording"]},{"name":"val buffer: ByteBuffer","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.buffer","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/buffer.html","searchKeys":["buffer","val buffer: ByteBuffer","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.buffer"]},{"name":"val byGroupName: String? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byGroupName","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-group-name.html","searchKeys":["byGroupName","val byGroupName: String? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byGroupName"]},{"name":"val byPeerIds: ArrayList? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byPeerIds","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-peer-ids.html","searchKeys":["byPeerIds","val byPeerIds: ArrayList? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byPeerIds"]},{"name":"val byRoleName: String? = null","description":"live.hms.video.sdk.models.PeerListIteratorOptions.byRoleName","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/by-role-name.html","searchKeys":["byRoleName","val byRoleName: String? = null","live.hms.video.sdk.models.PeerListIteratorOptions.byRoleName"]},{"name":"val bytesReceived: BigInteger?","description":"live.hms.video.connection.degredation.Peer.bytesReceived","location":"lib/live.hms.video.connection.degredation/-peer/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: BigInteger?","live.hms.video.connection.degredation.Peer.bytesReceived"]},{"name":"val bytesReceived: Long","description":"live.hms.video.connection.stats.HMSRTCStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long","live.hms.video.connection.stats.HMSRTCStats.bytesReceived"]},{"name":"val bytesReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long?","live.hms.video.connection.stats.HMSRemoteAudioStats.bytesReceived"]},{"name":"val bytesReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.bytesReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/bytes-received.html","searchKeys":["bytesReceived","val bytesReceived: Long?","live.hms.video.connection.stats.HMSRemoteVideoStats.bytesReceived"]},{"name":"val bytesSent: BigInteger?","description":"live.hms.video.connection.degredation.Peer.bytesSent","location":"lib/live.hms.video.connection.degredation/-peer/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: BigInteger?","live.hms.video.connection.degredation.Peer.bytesSent"]},{"name":"val bytesSent: Long","description":"live.hms.video.connection.stats.HMSRTCStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long","live.hms.video.connection.stats.HMSRTCStats.bytesSent"]},{"name":"val bytesSent: Long?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long?","live.hms.video.connection.stats.HMSLocalAudioStats.bytesSent"]},{"name":"val bytesSent: Long?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.bytesSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/bytes-sent.html","searchKeys":["bytesSent","val bytesSent: Long?","live.hms.video.connection.stats.HMSLocalVideoStats.bytesSent"]},{"name":"val cInconsistencyDetectTimerDelayTimeUnit: TimeUnit","description":"live.hms.video.utils.cInconsistencyDetectTimerDelayTimeUnit","location":"lib/live.hms.video.utils/c-inconsistency-detect-timer-delay-time-unit.html","searchKeys":["cInconsistencyDetectTimerDelayTimeUnit","val cInconsistencyDetectTimerDelayTimeUnit: TimeUnit","live.hms.video.utils.cInconsistencyDetectTimerDelayTimeUnit"]},{"name":"val cMaxTransportRetryDelayUnit: TimeUnit","description":"live.hms.video.utils.cMaxTransportRetryDelayUnit","location":"lib/live.hms.video.utils/c-max-transport-retry-delay-unit.html","searchKeys":["cMaxTransportRetryDelayUnit","val cMaxTransportRetryDelayUnit: TimeUnit","live.hms.video.utils.cMaxTransportRetryDelayUnit"]},{"name":"val cSubscribeIceRestartWaitTimeoutUnit: TimeUnit","description":"live.hms.video.utils.cSubscribeIceRestartWaitTimeoutUnit","location":"lib/live.hms.video.utils/c-subscribe-ice-restart-wait-timeout-unit.html","searchKeys":["cSubscribeIceRestartWaitTimeoutUnit","val cSubscribeIceRestartWaitTimeoutUnit: TimeUnit","live.hms.video.utils.cSubscribeIceRestartWaitTimeoutUnit"]},{"name":"val cameraHandler: Handler?","description":"live.hms.video.media.capturers.camera.CameraControl.cameraHandler","location":"lib/live.hms.video.media.capturers.camera/-camera-control/camera-handler.html","searchKeys":["cameraHandler","val cameraHandler: Handler?","live.hms.video.media.capturers.camera.CameraControl.cameraHandler"]},{"name":"val canBlockUser: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canBlockUser","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-block-user.html","searchKeys":["canBlockUser","val canBlockUser: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canBlockUser"]},{"name":"val canChangeResponse: Boolean = true","description":"live.hms.video.polls.models.question.HMSPollQuestion.canChangeResponse","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/can-change-response.html","searchKeys":["canChangeResponse","val canChangeResponse: Boolean = true","live.hms.video.polls.models.question.HMSPollQuestion.canChangeResponse"]},{"name":"val canChangeResponse: Boolean = true","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.canChangeResponse","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/can-change-response.html","searchKeys":["canChangeResponse","val canChangeResponse: Boolean = true","live.hms.video.polls.models.question.HmsPollQuestionCreation.canChangeResponse"]},{"name":"val canDisableChat: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canDisableChat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-disable-chat.html","searchKeys":["canDisableChat","val canDisableChat: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canDisableChat"]},{"name":"val canHideMessage: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canHideMessage","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-real-time-controls/can-hide-message.html","searchKeys":["canHideMessage","val canHideMessage: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls.canHideMessage"]},{"name":"val canSkip: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestion.canSkip","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/can-skip.html","searchKeys":["canSkip","val canSkip: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestion.canSkip"]},{"name":"val canSkip: Boolean = false","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.canSkip","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/can-skip.html","searchKeys":["canSkip","val canSkip: Boolean = false","live.hms.video.polls.models.question.HmsPollQuestionCreation.canSkip"]},{"name":"val case: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.case","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/case.html","searchKeys":["case","val case: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestionOption.case"]},{"name":"val caseSensitive: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.caseSensitive","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/case-sensitive.html","searchKeys":["caseSensitive","val caseSensitive: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.caseSensitive"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.HMSPollBuilder.category","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.HMSPollBuilder.category"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.models.HmsPoll.category","location":"lib/live.hms.video.polls.models/-hms-poll/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.models.HmsPoll.category"]},{"name":"val category: HmsPollCategory","description":"live.hms.video.polls.models.HmsPollCreationParams.category","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/category.html","searchKeys":["category","val category: HmsPollCategory","live.hms.video.polls.models.HmsPollCreationParams.category"]},{"name":"val changeRole: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.changeRole","location":"lib/live.hms.video.sdk.models.role/-permissions-params/change-role.html","searchKeys":["changeRole","val changeRole: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.changeRole"]},{"name":"val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.chat","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/chat.html","searchKeys":["chat","val chat: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.chat"]},{"name":"val chatTitle: String","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.chatTitle","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/chat-title.html","searchKeys":["chatTitle","val chatTitle: String","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.chatTitle"]},{"name":"val code: Int","description":"live.hms.video.error.HMSException.code","location":"lib/live.hms.video.error/-h-m-s-exception/code.html","searchKeys":["code","val code: Int","live.hms.video.error.HMSException.code"]},{"name":"val code: Int?","description":"live.hms.video.media.streams.models.PreferStateResponseError.code","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/code.html","searchKeys":["code","val code: Int?","live.hms.video.media.streams.models.PreferStateResponseError.code"]},{"name":"val code: Int?","description":"live.hms.video.sdk.models.OnTranscriptionError.code","location":"lib/live.hms.video.sdk.models/-on-transcription-error/code.html","searchKeys":["code","val code: Int?","live.hms.video.sdk.models.OnTranscriptionError.code"]},{"name":"val codec: HMSAudioCodec","description":"live.hms.video.sdk.models.role.AudioParams.codec","location":"lib/live.hms.video.sdk.models.role/-audio-params/codec.html","searchKeys":["codec","val codec: HMSAudioCodec","live.hms.video.sdk.models.role.AudioParams.codec"]},{"name":"val codec: HMSVideoCodec","description":"live.hms.video.sdk.models.role.VideoParams.codec","location":"lib/live.hms.video.sdk.models.role/-video-params/codec.html","searchKeys":["codec","val codec: HMSVideoCodec","live.hms.video.sdk.models.role.VideoParams.codec"]},{"name":"val combined: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.combined","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/combined.html","searchKeys":["combined","val combined: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.combined"]},{"name":"val concealedSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.concealedSamples","location":"lib/live.hms.video.connection.degredation/-audio/concealed-samples.html","searchKeys":["concealedSamples","val concealedSamples: BigInteger?","live.hms.video.connection.degredation.Audio.concealedSamples"]},{"name":"val concealmentEvents: BigInteger?","description":"live.hms.video.connection.degredation.Audio.concealmentEvents","location":"lib/live.hms.video.connection.degredation/-audio/concealment-events.html","searchKeys":["concealmentEvents","val concealmentEvents: BigInteger?","live.hms.video.connection.degredation.Audio.concealmentEvents"]},{"name":"val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.conferencing","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/conferencing.html","searchKeys":["conferencing","val conferencing: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.conferencing"]},{"name":"val context: Context","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.context","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/context.html","searchKeys":["context","val context: Context","live.hms.video.audio.manager.HMSAudioManagerApi31.context"]},{"name":"val context: Context","description":"live.hms.video.media.capturers.camera.CameraControl.context","location":"lib/live.hms.video.media.capturers.camera/-camera-control/context.html","searchKeys":["context","val context: Context","live.hms.video.media.capturers.camera.CameraControl.context"]},{"name":"val context: EglBase.Context","description":"live.hms.video.utils.SharedEglContext.context","location":"lib/live.hms.video.utils/-shared-egl-context/context.html","searchKeys":["context","val context: EglBase.Context","live.hms.video.utils.SharedEglContext.context"]},{"name":"val correct: Boolean","description":"live.hms.video.polls.models.answer.PollAnswerItem.correct","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/correct.html","searchKeys":["correct","val correct: Boolean","live.hms.video.polls.models.answer.PollAnswerItem.correct"]},{"name":"val correct: Long","description":"live.hms.video.polls.network.PollResultsItems.correct","location":"lib/live.hms.video.polls.network/-poll-results-items/correct.html","searchKeys":["correct","val correct: Long","live.hms.video.polls.network.PollResultsItems.correct"]},{"name":"val correct: Long?","description":"live.hms.video.polls.models.PollStatsQuestions.correct","location":"lib/live.hms.video.polls.models/-poll-stats-questions/correct.html","searchKeys":["correct","val correct: Long?","live.hms.video.polls.models.PollStatsQuestions.correct"]},{"name":"val correctAnswer: HMSPollQuestionAnswer?","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.correctAnswer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer?","live.hms.video.polls.models.question.HmsPollQuestionContainer.correctAnswer"]},{"name":"val correctAnswer: HMSPollQuestionAnswer?","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.correctAnswer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer?","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.correctAnswer"]},{"name":"val correctAnswer: HMSPollQuestionAnswer? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.correctAnswer","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/correct-answer.html","searchKeys":["correctAnswer","val correctAnswer: HMSPollQuestionAnswer? = null","live.hms.video.polls.models.question.HMSPollQuestion.correctAnswer"]},{"name":"val correctResponses: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.correctResponses","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/correct-responses.html","searchKeys":["correctResponses","val correctResponses: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.correctResponses"]},{"name":"val correctResponses: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.correctResponses","location":"lib/live.hms.video.polls.network/-leaderboard-question/correct-responses.html","searchKeys":["correctResponses","val correctResponses: Long?","live.hms.video.polls.network.LeaderboardQuestion.correctResponses"]},{"name":"val correctUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.correctUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/correct-users.html","searchKeys":["correctUsers","val correctUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.correctUsers"]},{"name":"val count: Long","description":"live.hms.video.sdk.models.PeerSearchResponse.count","location":"lib/live.hms.video.sdk.models/-peer-search-response/count.html","searchKeys":["count","val count: Long","live.hms.video.sdk.models.PeerSearchResponse.count"]},{"name":"val cpu: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.cpu","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/cpu.html","searchKeys":["cpu","val cpu: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.cpu"]},{"name":"val cpuMs: Float","description":"live.hms.video.connection.stats.clientside.model.QualityLimitation.cpuMs","location":"lib/live.hms.video.connection.stats.clientside.model/-quality-limitation/cpu-ms.html","searchKeys":["cpuMs","val cpuMs: Float","live.hms.video.connection.stats.clientside.model.QualityLimitation.cpuMs"]},{"name":"val createdBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.createdBy","location":"lib/live.hms.video.polls.models/-hms-poll/created-by.html","searchKeys":["createdBy","val createdBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.createdBy"]},{"name":"val currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.Peer.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-peer/current-round-trip-time.html","searchKeys":["currentRoundTripTime","val currentRoundTripTime: Double?","live.hms.video.connection.degredation.Peer.currentRoundTripTime"]},{"name":"val currentState: String","description":"live.hms.video.sdk.models.enums.RetrySchedulerState.currentState","location":"lib/live.hms.video.sdk.models.enums/-retry-scheduler-state/current-state.html","searchKeys":["currentState","val currentState: String","live.hms.video.sdk.models.enums.RetrySchedulerState.currentState"]},{"name":"val customerUserID: String?","description":"live.hms.video.sdk.models.HMSPeer.customerUserID","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/customer-user-i-d.html","searchKeys":["customerUserID","val customerUserID: String?","live.hms.video.sdk.models.HMSPeer.customerUserID"]},{"name":"val data: List?","description":"live.hms.video.signal.init.HMSRoomLayout.data","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/data.html","searchKeys":["data","val data: List?","live.hms.video.signal.init.HMSRoomLayout.data"]},{"name":"val data: String?","description":"live.hms.video.media.streams.models.PreferStateResponseError.data","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/data.html","searchKeys":["data","val data: String?","live.hms.video.media.streams.models.PreferStateResponseError.data"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.default"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.default"]},{"name":"val default: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/default.html","searchKeys":["default","val default: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.default"]},{"name":"val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/default.html","searchKeys":["default","val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.default"]},{"name":"val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.default","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/default.html","searchKeys":["default","val default: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.default"]},{"name":"val degradationPreference: DegradationPreference","description":"live.hms.video.media.settings.HMSVideoTrackSettings.degradationPreference","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/degradation-preference.html","searchKeys":["degradationPreference","val degradationPreference: DegradationPreference","live.hms.video.media.settings.HMSVideoTrackSettings.degradationPreference"]},{"name":"val degradeGracePeriodSeconds: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.degradeGracePeriodSeconds","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/degrade-grace-period-seconds.html","searchKeys":["degradeGracePeriodSeconds","val degradeGracePeriodSeconds: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.degradeGracePeriodSeconds"]},{"name":"val delayedPacketOutageSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.delayedPacketOutageSamples","location":"lib/live.hms.video.connection.degredation/-audio/delayed-packet-outage-samples.html","searchKeys":["delayedPacketOutageSamples","val delayedPacketOutageSamples: BigInteger?","live.hms.video.connection.degredation.Audio.delayedPacketOutageSamples"]},{"name":"val description: String","description":"live.hms.video.audio.BluetoothErrorType.description","location":"lib/live.hms.video.audio/-bluetooth-error-type/description.html","searchKeys":["description","val description: String","live.hms.video.audio.BluetoothErrorType.description"]},{"name":"val description: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.description","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/description.html","searchKeys":["description","val description: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.description"]},{"name":"val detached: Boolean?","description":"live.hms.video.connection.degredation.Audio.detached","location":"lib/live.hms.video.connection.degredation/-audio/detached.html","searchKeys":["detached","val detached: Boolean?","live.hms.video.connection.degredation.Audio.detached"]},{"name":"val deviceTestReport: DeviceTestReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.deviceTestReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/device-test-report.html","searchKeys":["deviceTestReport","val deviceTestReport: DeviceTestReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.deviceTestReport"]},{"name":"val disableAutoResize: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.disableAutoResize","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/disable-auto-resize.html","searchKeys":["disableAutoResize","val disableAutoResize: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.disableAutoResize"]},{"name":"val disableInternalAudioManager: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.disableInternalAudioManager","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/disable-internal-audio-manager.html","searchKeys":["disableInternalAudioManager","val disableInternalAudioManager: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.disableInternalAudioManager"]},{"name":"val dispatcher: ExecutorCoroutineDispatcher","description":"live.hms.video.utils.HMSCoroutineScope.dispatcher","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/dispatcher.html","searchKeys":["dispatcher","val dispatcher: ExecutorCoroutineDispatcher","live.hms.video.utils.HMSCoroutineScope.dispatcher"]},{"name":"val downlinkQuality: Int","description":"live.hms.video.connection.stats.quality.HMSNetworkQuality.downlinkQuality","location":"lib/live.hms.video.connection.stats.quality/-h-m-s-network-quality/downlink-quality.html","searchKeys":["downlinkQuality","val downlinkQuality: Int","live.hms.video.connection.stats.quality.HMSNetworkQuality.downlinkQuality"]},{"name":"val duration: Long","description":"live.hms.video.polls.HMSPollBuilder.duration","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/duration.html","searchKeys":["duration","val duration: Long","live.hms.video.polls.HMSPollBuilder.duration"]},{"name":"val duration: Long","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.duration","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/duration.html","searchKeys":["duration","val duration: Long","live.hms.video.sdk.models.HMSHLSTimedMetadata.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.HmsPollCreationParams.duration","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.HmsPollCreationParams.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.duration","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.question.HMSPollQuestion.duration"]},{"name":"val duration: Long = 0","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.duration","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/duration.html","searchKeys":["duration","val duration: Long = 0","live.hms.video.polls.models.question.HmsPollQuestionCreation.duration"]},{"name":"val duration: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.duration","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/duration.html","searchKeys":["duration","val duration: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.duration"]},{"name":"val duration: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.duration","location":"lib/live.hms.video.polls.network/-leaderboard-question/duration.html","searchKeys":["duration","val duration: Long?","live.hms.video.polls.network.LeaderboardQuestion.duration"]},{"name":"val durationMillis: Long? = null","description":"live.hms.video.polls.models.answer.HmsPollAnswer.durationMillis","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/duration-millis.html","searchKeys":["durationMillis","val durationMillis: Long? = null","live.hms.video.polls.models.answer.HmsPollAnswer.durationMillis"]},{"name":"val effectsKey: String?","description":"live.hms.video.signal.init.VB.effectsKey","location":"lib/live.hms.video.signal.init/-v-b/effects-key.html","searchKeys":["effectsKey","val effectsKey: String?","live.hms.video.signal.init.VB.effectsKey"]},{"name":"val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/elements.html","searchKeys":["elements","val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.elements"]},{"name":"val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.elements","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/elements.html","searchKeys":["elements","val elements: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.elements"]},{"name":"val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.emojiReactions","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/emoji-reactions.html","searchKeys":["emojiReactions","val emojiReactions: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.EmojiReactions?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.emojiReactions"]},{"name":"val emptySpaceTrimmed: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.emptySpaceTrimmed","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/empty-space-trimmed.html","searchKeys":["emptySpaceTrimmed","val emptySpaceTrimmed: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.emptySpaceTrimmed"]},{"name":"val enableAutomaticGainControl: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableAutomaticGainControl","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-automatic-gain-control.html","searchKeys":["enableAutomaticGainControl","val enableAutomaticGainControl: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableAutomaticGainControl"]},{"name":"val enableEchoCancellation: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableEchoCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-echo-cancellation.html","searchKeys":["enableEchoCancellation","val enableEchoCancellation: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableEchoCancellation"]},{"name":"val enableLocalTileInset: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableLocalTileInset","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/enable-local-tile-inset.html","searchKeys":["enableLocalTileInset","val enableLocalTileInset: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableLocalTileInset"]},{"name":"val enableNoiseCancellation: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseCancellation","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-noise-cancellation.html","searchKeys":["enableNoiseCancellation","val enableNoiseCancellation: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseCancellation"]},{"name":"val enableNoiseSupression: Boolean","description":"live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseSupression","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/enable-noise-supression.html","searchKeys":["enableNoiseSupression","val enableNoiseSupression: Boolean","live.hms.video.media.settings.HMSAudioTrackSettings.enableNoiseSupression"]},{"name":"val enableSpotlightingPeer: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableSpotlightingPeer","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/enable-spotlighting-peer.html","searchKeys":["enableSpotlightingPeer","val enableSpotlightingPeer: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.enableSpotlightingPeer"]},{"name":"val enabled: Boolean","description":"live.hms.video.sdk.peerlist.models.Hls.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-hls/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.sdk.peerlist.models.Hls.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.sdk.peerlist.models.Sfu.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.sdk.peerlist.models.Sfu.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.enabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-noise-cancellation-element/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement.enabled"]},{"name":"val enabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.enabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-noise-cancellation-element/enabled.html","searchKeys":["enabled","val enabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement.enabled"]},{"name":"val enabled: Boolean?","description":"live.hms.video.sdk.peerlist.models.Browser.enabled","location":"lib/live.hms.video.sdk.peerlist.models/-browser/enabled.html","searchKeys":["enabled","val enabled: Boolean?","live.hms.video.sdk.peerlist.models.Browser.enabled"]},{"name":"val enabledFlags: List?","description":"live.hms.video.signal.init.ServerConfiguration.enabledFlags","location":"lib/live.hms.video.signal.init/-server-configuration/enabled-flags.html","searchKeys":["enabledFlags","val enabledFlags: List?","live.hms.video.signal.init.ServerConfiguration.enabledFlags"]},{"name":"val enabledFromDashboard: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.enabledFromDashboard","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/enabled-from-dashboard.html","searchKeys":["enabledFromDashboard","val enabledFromDashboard: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.enabledFromDashboard"]},{"name":"val end: Int","description":"live.hms.video.sdk.transcripts.HmsTranscript.end","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/end.html","searchKeys":["end","val end: Int","live.hms.video.sdk.transcripts.HmsTranscript.end"]},{"name":"val endFlow: MutableSharedFlow","description":"live.hms.video.services.HMSScreenCaptureService.endFlow","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/end-flow.html","searchKeys":["endFlow","val endFlow: MutableSharedFlow","live.hms.video.services.HMSScreenCaptureService.endFlow"]},{"name":"val endRoom: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.endRoom","location":"lib/live.hms.video.sdk.models.role/-permissions-params/end-room.html","searchKeys":["endRoom","val endRoom: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.endRoom"]},{"name":"val ended: Boolean?","description":"live.hms.video.connection.degredation.Audio.ended","location":"lib/live.hms.video.connection.degredation/-audio/ended.html","searchKeys":["ended","val ended: Boolean?","live.hms.video.connection.degredation.Audio.ended"]},{"name":"val endpoint: String?","description":"live.hms.video.signal.init.LayoutRequestOptions.endpoint","location":"lib/live.hms.video.signal.init/-layout-request-options/endpoint.html","searchKeys":["endpoint","val endpoint: String?","live.hms.video.signal.init.LayoutRequestOptions.endpoint"]},{"name":"val endpoint: String?","description":"live.hms.video.signal.init.TokenRequestOptions.endpoint","location":"lib/live.hms.video.signal.init/-token-request-options/endpoint.html","searchKeys":["endpoint","val endpoint: String?","live.hms.video.signal.init.TokenRequestOptions.endpoint"]},{"name":"val entries: List?","description":"live.hms.video.polls.network.PollLeaderboardResponse.entries","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/entries.html","searchKeys":["entries","val entries: List?","live.hms.video.polls.network.PollLeaderboardResponse.entries"]},{"name":"val eof: Boolean","description":"live.hms.video.sdk.models.PeerSearchResponse.eof","location":"lib/live.hms.video.sdk.models/-peer-search-response/--eof--.html","searchKeys":["eof","val eof: Boolean","live.hms.video.sdk.models.PeerSearchResponse.eof"]},{"name":"val error: HMSException?","description":"live.hms.video.polls.models.answer.PollAnswerItem.error","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.polls.models.answer.PollAnswerItem.error"]},{"name":"val error: HMSException?","description":"live.hms.video.polls.network.PollResultsItems.error","location":"lib/live.hms.video.polls.network/-poll-results-items/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.polls.network.PollResultsItems.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSBrowserRecordingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSHLSStreamingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSHLSStreamingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSRtmpStreamingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HMSServerRecordingState.error","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HMSServerRecordingState.error"]},{"name":"val error: HMSException?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.error","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/error.html","searchKeys":["error","val error: HMSException?","live.hms.video.sdk.models.HmsHlsRecordingState.error"]},{"name":"val error: Throwable? = null","description":"live.hms.video.polls.network.QuestionContainer.error","location":"lib/live.hms.video.polls.network/-question-container/error.html","searchKeys":["error","val error: Throwable? = null","live.hms.video.polls.network.QuestionContainer.error"]},{"name":"val errorListener: IErrorListener?","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.errorListener","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/error-listener.html","searchKeys":["errorListener","val errorListener: IErrorListener?","live.hms.video.audio.manager.HMSAudioManagerApi31.errorListener"]},{"name":"val errorMessage: String?","description":"live.hms.video.signal.init.ErrorTokenResult.errorMessage","location":"lib/live.hms.video.signal.init/-error-token-result/error-message.html","searchKeys":["errorMessage","val errorMessage: String?","live.hms.video.signal.init.ErrorTokenResult.errorMessage"]},{"name":"val errors: List","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.errors","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/errors.html","searchKeys":["errors","val errors: List","live.hms.video.diagnostics.models.ConnectivityCheckResult.errors"]},{"name":"val executor: ScheduledExecutorService","description":"live.hms.video.utils.HMSCoroutineScope.executor","location":"lib/live.hms.video.utils/-h-m-s-coroutine-scope/executor.html","searchKeys":["executor","val executor: ScheduledExecutorService","live.hms.video.utils.HMSCoroutineScope.executor"]},{"name":"val expiresAt: String?","description":"live.hms.video.signal.init.TokenResult.expiresAt","location":"lib/live.hms.video.signal.init/-token-result/expires-at.html","searchKeys":["expiresAt","val expiresAt: String?","live.hms.video.signal.init.TokenResult.expiresAt"]},{"name":"val finalAnswer: Boolean","description":"live.hms.video.polls.models.network.SingleResponse.finalAnswer","location":"lib/live.hms.video.polls.models.network/-single-response/final-answer.html","searchKeys":["finalAnswer","val finalAnswer: Boolean","live.hms.video.polls.models.network.SingleResponse.finalAnswer"]},{"name":"val firCount: Long?","description":"live.hms.video.connection.degredation.Video.firCount","location":"lib/live.hms.video.connection.degredation/-video/fir-count.html","searchKeys":["firCount","val firCount: Long?","live.hms.video.connection.degredation.Video.firCount"]},{"name":"val fontFamily: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.fontFamily","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-typo-graphy/font-family.html","searchKeys":["fontFamily","val fontFamily: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.TypoGraphy.fontFamily"]},{"name":"val forceSoftwareDecoder: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareDecoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","val forceSoftwareDecoder: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareDecoder"]},{"name":"val forceSoftwareDecoder: Boolean = false","description":"live.hms.video.factories.HMSVideoDecoderFactory.forceSoftwareDecoder","location":"lib/live.hms.video.factories/-h-m-s-video-decoder-factory/force-software-decoder.html","searchKeys":["forceSoftwareDecoder","val forceSoftwareDecoder: Boolean = false","live.hms.video.factories.HMSVideoDecoderFactory.forceSoftwareDecoder"]},{"name":"val forceSoftwareEncoder: Boolean","description":"live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareEncoder","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/force-software-encoder.html","searchKeys":["forceSoftwareEncoder","val forceSoftwareEncoder: Boolean","live.hms.video.media.settings.HMSVideoTrackSettings.forceSoftwareEncoder"]},{"name":"val format: Int","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.format","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/format.html","searchKeys":["format","val format: Int","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.format"]},{"name":"val fps: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.fps","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/fps.html","searchKeys":["fps","val fps: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.fps"]},{"name":"val frameHeight: Long?","description":"live.hms.video.connection.degredation.Video.frameHeight","location":"lib/live.hms.video.connection.degredation/-video/frame-height.html","searchKeys":["frameHeight","val frameHeight: Long?","live.hms.video.connection.degredation.Video.frameHeight"]},{"name":"val frameRate: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.frameRate","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/frame-rate.html","searchKeys":["frameRate","val frameRate: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.frameRate"]},{"name":"val frameRate: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.frameRate","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/frame-rate.html","searchKeys":["frameRate","val frameRate: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.frameRate"]},{"name":"val frameRate: Int","description":"live.hms.video.media.settings.HMSSimulcastSettings.Item.frameRate","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/-item/frame-rate.html","searchKeys":["frameRate","val frameRate: Int","live.hms.video.media.settings.HMSSimulcastSettings.Item.frameRate"]},{"name":"val frameRate: Int","description":"live.hms.video.sdk.models.role.VideoParams.frameRate","location":"lib/live.hms.video.sdk.models.role/-video-params/frame-rate.html","searchKeys":["frameRate","val frameRate: Int","live.hms.video.sdk.models.role.VideoParams.frameRate"]},{"name":"val frameRate: Number?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.frameRate","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/frame-rate.html","searchKeys":["frameRate","val frameRate: Number?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.frameRate"]},{"name":"val frameWidth: Long?","description":"live.hms.video.connection.degredation.Video.frameWidth","location":"lib/live.hms.video.connection.degredation/-video/frame-width.html","searchKeys":["frameWidth","val frameWidth: Long?","live.hms.video.connection.degredation.Video.frameWidth"]},{"name":"val framesDecoded: Long?","description":"live.hms.video.connection.degredation.Video.framesDecoded","location":"lib/live.hms.video.connection.degredation/-video/frames-decoded.html","searchKeys":["framesDecoded","val framesDecoded: Long?","live.hms.video.connection.degredation.Video.framesDecoded"]},{"name":"val framesDropped: Long?","description":"live.hms.video.connection.degredation.Video.framesDropped","location":"lib/live.hms.video.connection.degredation/-video/frames-dropped.html","searchKeys":["framesDropped","val framesDropped: Long?","live.hms.video.connection.degredation.Video.framesDropped"]},{"name":"val framesPerSecond: Double?","description":"live.hms.video.connection.degredation.Video.framesPerSecond","location":"lib/live.hms.video.connection.degredation/-video/frames-per-second.html","searchKeys":["framesPerSecond","val framesPerSecond: Double?","live.hms.video.connection.degredation.Video.framesPerSecond"]},{"name":"val framesReceived: Int?","description":"live.hms.video.connection.degredation.Video.framesReceived","location":"lib/live.hms.video.connection.degredation/-video/frames-received.html","searchKeys":["framesReceived","val framesReceived: Int?","live.hms.video.connection.degredation.Video.framesReceived"]},{"name":"val framework: AgentType","description":"live.hms.video.sdk.models.FrameworkInfo.framework","location":"lib/live.hms.video.sdk.models/-framework-info/framework.html","searchKeys":["framework","val framework: AgentType","live.hms.video.sdk.models.FrameworkInfo.framework"]},{"name":"val frameworkInfo: FrameworkInfo","description":"live.hms.video.sdk.HMSSDK.frameworkInfo","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/framework-info.html","searchKeys":["frameworkInfo","val frameworkInfo: FrameworkInfo","live.hms.video.sdk.HMSSDK.frameworkInfo"]},{"name":"val frameworkSdkVersion: String? = null","description":"live.hms.video.sdk.models.FrameworkInfo.frameworkSdkVersion","location":"lib/live.hms.video.sdk.models/-framework-info/framework-sdk-version.html","searchKeys":["frameworkSdkVersion","val frameworkSdkVersion: String? = null","live.hms.video.sdk.models.FrameworkInfo.frameworkSdkVersion"]},{"name":"val frameworkVersion: String? = null","description":"live.hms.video.sdk.models.FrameworkInfo.frameworkVersion","location":"lib/live.hms.video.sdk.models/-framework-info/framework-version.html","searchKeys":["frameworkVersion","val frameworkVersion: String? = null","live.hms.video.sdk.models.FrameworkInfo.frameworkVersion"]},{"name":"val freezeCount: Long?","description":"live.hms.video.connection.degredation.Video.freezeCount","location":"lib/live.hms.video.connection.degredation/-video/freeze-count.html","searchKeys":["freezeCount","val freezeCount: Long?","live.hms.video.connection.degredation.Video.freezeCount"]},{"name":"val goLiveBtnLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.goLiveBtnLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/go-live-btn-label.html","searchKeys":["goLiveBtnLabel","val goLiveBtnLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.goLiveBtnLabel"]},{"name":"val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.grid","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/grid.html","searchKeys":["grid","val grid: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.grid"]},{"name":"val groups: ArrayList?","description":"live.hms.video.groups.GroupJoinLeaveResponse.groups","location":"lib/live.hms.video.groups/-group-join-leave-response/groups.html","searchKeys":["groups","val groups: ArrayList?","live.hms.video.groups.GroupJoinLeaveResponse.groups"]},{"name":"val gson: Gson","description":"live.hms.video.utils.GsonUtils.gson","location":"lib/live.hms.video.utils/-gson-utils/gson.html","searchKeys":["gson","val gson: Gson","live.hms.video.utils.GsonUtils.gson"]},{"name":"val haltPreviewJoinForPermissions: Boolean","description":"live.hms.video.sdk.HMSSDK.haltPreviewJoinForPermissions","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/halt-preview-join-for-permissions.html","searchKeys":["haltPreviewJoinForPermissions","val haltPreviewJoinForPermissions: Boolean","live.hms.video.sdk.HMSSDK.haltPreviewJoinForPermissions"]},{"name":"val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.handRaise","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/hand-raise.html","searchKeys":["handRaise","val handRaise: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HandRaise?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.handRaise"]},{"name":"val handler: Handler","description":"live.hms.video.diagnostics.HMSDiagnostics.handler","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/handler.html","searchKeys":["handler","val handler: Handler","live.hms.video.diagnostics.HMSDiagnostics.handler"]},{"name":"val hasNext: Boolean?","description":"live.hms.video.polls.network.PollLeaderboardResponse.hasNext","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/has-next.html","searchKeys":["hasNext","val hasNext: Boolean?","live.hms.video.polls.network.PollLeaderboardResponse.hasNext"]},{"name":"val hash: String","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.hash","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/hash.html","searchKeys":["hash","val hash: String","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.hash"]},{"name":"val height: Int","description":"live.hms.video.connection.stats.clientside.model.Size.height","location":"lib/live.hms.video.connection.stats.clientside.model/-size/height.html","searchKeys":["height","val height: Int","live.hms.video.connection.stats.clientside.model.Size.height"]},{"name":"val height: Int","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.height","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/height.html","searchKeys":["height","val height: Int","live.hms.video.media.settings.HMSRtmpVideoResolution.height"]},{"name":"val height: Int","description":"live.hms.video.sdk.models.role.VideoParams.height","location":"lib/live.hms.video.sdk.models.role/-video-params/height.html","searchKeys":["height","val height: Int","live.hms.video.sdk.models.role.VideoParams.height"]},{"name":"val hidden: Boolean = false","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.hidden","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/hidden.html","searchKeys":["hidden","val hidden: Boolean = false","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.hidden"]},{"name":"val high: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.high","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/high.html","searchKeys":["high","val high: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.high"]},{"name":"val high: Long","description":"live.hms.video.signal.init.RangeLimits.high","location":"lib/live.hms.video.signal.init/-range-limits/high.html","searchKeys":["high","val high: Long","live.hms.video.signal.init.RangeLimits.high"]},{"name":"val hls: Hls?","description":"live.hms.video.sdk.peerlist.models.Recording.hls","location":"lib/live.hms.video.sdk.peerlist.models/-recording/hls.html","searchKeys":["hls","val hls: Hls?","live.hms.video.sdk.peerlist.models.Recording.hls"]},{"name":"val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.hlsLiveStreaming","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/hls-live-streaming.html","searchKeys":["hlsLiveStreaming","val hlsLiveStreaming: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.hlsLiveStreaming"]},{"name":"val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.hlsLiveStreamingHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/hls-live-streaming-header.html","searchKeys":["hlsLiveStreamingHeader","val hlsLiveStreamingHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.hlsLiveStreamingHeader"]},{"name":"val hlsRecordingConfig: HMSHlsRecordingConfig?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.hlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/hls-recording-config.html","searchKeys":["hlsRecordingConfig","val hlsRecordingConfig: HMSHlsRecordingConfig?","live.hms.video.sdk.models.HmsHlsRecordingState.hlsRecordingConfig"]},{"name":"val hlsRecordingConfig: HMSHlsRecordingConfig?","description":"live.hms.video.sdk.peerlist.models.Hls.hlsRecordingConfig","location":"lib/live.hms.video.sdk.peerlist.models/-hls/hls-recording-config.html","searchKeys":["hlsRecordingConfig","val hlsRecordingConfig: HMSHlsRecordingConfig?","live.hms.video.sdk.peerlist.models.Hls.hlsRecordingConfig"]},{"name":"val hlsStreamUrl: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.hlsStreamUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/hls-stream-url.html","searchKeys":["hlsStreamUrl","val hlsStreamUrl: String?","live.hms.video.sdk.models.HMSHLSVariant.hlsStreamUrl"]},{"name":"val hlsStreaming: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.hlsStreaming","location":"lib/live.hms.video.sdk.models.role/-permissions-params/hls-streaming.html","searchKeys":["hlsStreaming","val hlsStreaming: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.hlsStreaming"]},{"name":"val hmsAudioTrackSettings: HMSAudioTrackSettings?","description":"live.hms.video.audio.manager.HMSAudioManagerApi31.hmsAudioTrackSettings","location":"lib/live.hms.video.audio.manager/-h-m-s-audio-manager-api31/hms-audio-track-settings.html","searchKeys":["hmsAudioTrackSettings","val hmsAudioTrackSettings: HMSAudioTrackSettings?","live.hms.video.audio.manager.HMSAudioManagerApi31.hmsAudioTrackSettings"]},{"name":"val hmsBitmapUpdateListener: HMSBitmapUpdateListener","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsBitmapUpdateListener","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/hms-bitmap-update-listener.html","searchKeys":["hmsBitmapUpdateListener","val hmsBitmapUpdateListener: HMSBitmapUpdateListener","live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsBitmapUpdateListener"]},{"name":"val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null","description":"live.hms.video.sdk.models.HMSHLSConfig.hmsHlsRecordingConfig","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/hms-hls-recording-config.html","searchKeys":["hmsHlsRecordingConfig","val hmsHlsRecordingConfig: HMSHlsRecordingConfig? = null","live.hms.video.sdk.models.HMSHLSConfig.hmsHlsRecordingConfig"]},{"name":"val hmsLayer: HMSLayer?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.hmsLayer","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/hms-layer.html","searchKeys":["hmsLayer","val hmsLayer: HMSLayer?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.hmsLayer"]},{"name":"val hmsLayer: HMSLayer?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.hmsLayer","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/hms-layer.html","searchKeys":["hmsLayer","val hmsLayer: HMSLayer?","live.hms.video.connection.stats.HMSLocalVideoStats.hmsLayer"]},{"name":"val hmsLogSettings: HMSLogSettings","description":"live.hms.video.sdk.HMSSDK.hmsLogSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-log-settings.html","searchKeys":["hmsLogSettings","val hmsLogSettings: HMSLogSettings","live.hms.video.sdk.HMSSDK.hmsLogSettings"]},{"name":"val hmsPoll: HmsPoll","description":"live.hms.video.polls.HMSPollResponseBuilder.hmsPoll","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/hms-poll.html","searchKeys":["hmsPoll","val hmsPoll: HmsPoll","live.hms.video.polls.HMSPollResponseBuilder.hmsPoll"]},{"name":"val hmsSDK: HMSSDK","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsSDK","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/hms-s-d-k.html","searchKeys":["hmsSDK","val hmsSDK: HMSSDK","live.hms.video.plugin.video.utils.HMSBitmapPlugin.hmsSDK"]},{"name":"val hmsSettings: HMSTrackSettings","description":"live.hms.video.sdk.HMSSDK.hmsSettings","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-settings.html","searchKeys":["hmsSettings","val hmsSettings: HMSTrackSettings","live.hms.video.sdk.HMSSDK.hmsSettings"]},{"name":"val hmsTrack: HMSTrack?","description":"live.hms.video.sdk.models.HMSSpeaker.hmsTrack","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/hms-track.html","searchKeys":["hmsTrack","val hmsTrack: HMSTrack?","live.hms.video.sdk.models.HMSSpeaker.hmsTrack"]},{"name":"val hmsTrackSettings: HMSTrackSettings","description":"live.hms.video.audio.BluetoothPermissionHandler.hmsTrackSettings","location":"lib/live.hms.video.audio/-bluetooth-permission-handler/hms-track-settings.html","searchKeys":["hmsTrackSettings","val hmsTrackSettings: HMSTrackSettings","live.hms.video.audio.BluetoothPermissionHandler.hmsTrackSettings"]},{"name":"val hmsWebRtcLogLevel: HMSLogger.LogLevel","description":"live.hms.video.sdk.HMSSDK.hmsWebRtcLogLevel","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/hms-web-rtc-log-level.html","searchKeys":["hmsWebRtcLogLevel","val hmsWebRtcLogLevel: HMSLogger.LogLevel","live.hms.video.sdk.HMSSDK.hmsWebRtcLogLevel"]},{"name":"val hmsWhiteboard: HMSWhiteboard","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.hmsWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-start/hms-whiteboard.html","searchKeys":["hmsWhiteboard","val hmsWhiteboard: HMSWhiteboard","live.hms.video.whiteboard.HMSWhiteboardUpdate.Start.hmsWhiteboard"]},{"name":"val hmsWhiteboard: HMSWhiteboard","description":"live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.hmsWhiteboard","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-update/-stop/hms-whiteboard.html","searchKeys":["hmsWhiteboard","val hmsWhiteboard: HMSWhiteboard","live.hms.video.whiteboard.HMSWhiteboardUpdate.Stop.hmsWhiteboard"]},{"name":"val iceGatheringOnAnyAddressPorts: Boolean","description":"live.hms.video.sdk.HMSSDK.iceGatheringOnAnyAddressPorts","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/ice-gathering-on-any-address-ports.html","searchKeys":["iceGatheringOnAnyAddressPorts","val iceGatheringOnAnyAddressPorts: Boolean","live.hms.video.sdk.HMSSDK.iceGatheringOnAnyAddressPorts"]},{"name":"val id: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.id","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/id.html","searchKeys":["id","val id: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.id"]},{"name":"val id: String","description":"live.hms.video.media.streams.HMSMediaStream.id","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/id.html","searchKeys":["id","val id: String","live.hms.video.media.streams.HMSMediaStream.id"]},{"name":"val id: String","description":"live.hms.video.whiteboard.HMSWhiteboard.id","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/id.html","searchKeys":["id","val id: String","live.hms.video.whiteboard.HMSWhiteboard.id"]},{"name":"val id: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.id","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/id.html","searchKeys":["id","val id: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.id"]},{"name":"val id: String?","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.id","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/id.html","searchKeys":["id","val id: String?","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.id"]},{"name":"val id: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.id","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/id.html","searchKeys":["id","val id: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.id"]},{"name":"val image: Image","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.image","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/image.html","searchKeys":["image","val image: Image","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.image"]},{"name":"val index: Int","description":"live.hms.video.polls.models.PollStatsQuestions.index","location":"lib/live.hms.video.polls.models/-poll-stats-questions/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.PollStatsQuestions.index"]},{"name":"val index: Int","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.index","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.network.HMSPollQuestionResponse.index"]},{"name":"val index: Int","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.index","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/--index--.html","searchKeys":["index","val index: Int","live.hms.video.polls.models.question.HMSPollQuestionOption.index"]},{"name":"val info: PreferLayerResponseInfo","description":"live.hms.video.media.streams.models.PreferStateResponse.info","location":"lib/live.hms.video.media.streams.models/-prefer-state-response/info.html","searchKeys":["info","val info: PreferLayerResponseInfo","live.hms.video.media.streams.models.PreferStateResponse.info"]},{"name":"val initEndpoint: String","description":"live.hms.video.sdk.models.HMSConfig.initEndpoint","location":"lib/live.hms.video.sdk.models/-h-m-s-config/init-endpoint.html","searchKeys":["initEndpoint","val initEndpoint: String","live.hms.video.sdk.models.HMSConfig.initEndpoint"]},{"name":"val initialState: HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSAudioTrackSettings.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/initial-state.html","searchKeys":["initialState","val initialState: HMSTrackSettings.InitState","live.hms.video.media.settings.HMSAudioTrackSettings.initialState"]},{"name":"val initialState: HMSTrackSettings.InitState","description":"live.hms.video.media.settings.HMSVideoTrackSettings.initialState","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/initial-state.html","searchKeys":["initialState","val initialState: HMSTrackSettings.InitState","live.hms.video.media.settings.HMSVideoTrackSettings.initialState"]},{"name":"val initialState: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.initialState","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/initial-state.html","searchKeys":["initialState","val initialState: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.initialState"]},{"name":"val initialisedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.initialisedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/initialised-at.html","searchKeys":["initialisedAt","val initialisedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.initialisedAt"]},{"name":"val initialisedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.initialisedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/initialised-at.html","searchKeys":["initialisedAt","val initialisedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.initialisedAt"]},{"name":"val initialising: Boolean = false","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.initialising","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/initialising.html","searchKeys":["initialising","val initialising: Boolean = false","live.hms.video.sdk.models.HMSBrowserRecordingState.initialising"]},{"name":"val insertedSamplesForDeceleration: BigInteger?","description":"live.hms.video.connection.degredation.Audio.insertedSamplesForDeceleration","location":"lib/live.hms.video.connection.degredation/-audio/inserted-samples-for-deceleration.html","searchKeys":["insertedSamplesForDeceleration","val insertedSamplesForDeceleration: BigInteger?","live.hms.video.connection.degredation.Audio.insertedSamplesForDeceleration"]},{"name":"val interruptionCount: Long?","description":"live.hms.video.connection.degredation.Audio.interruptionCount","location":"lib/live.hms.video.connection.degredation/-audio/interruption-count.html","searchKeys":["interruptionCount","val interruptionCount: Long?","live.hms.video.connection.degredation.Audio.interruptionCount"]},{"name":"val isCameraFacing: HMSVideoTrackSettings.CameraFacing","description":"live.hms.video.sdk.models.LastTrackState.isCameraFacing","location":"lib/live.hms.video.sdk.models/-last-track-state/is-camera-facing.html","searchKeys":["isCameraFacing","val isCameraFacing: HMSVideoTrackSettings.CameraFacing","live.hms.video.sdk.models.LastTrackState.isCameraFacing"]},{"name":"val isFinal: Boolean","description":"live.hms.video.sdk.transcripts.HmsTranscript.isFinal","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/is-final.html","searchKeys":["isFinal","val isFinal: Boolean","live.hms.video.sdk.transcripts.HmsTranscript.isFinal"]},{"name":"val isLast: Boolean","description":"live.hms.video.polls.network.PollGetResponsesReply.isLast","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/is-last.html","searchKeys":["isLast","val isLast: Boolean","live.hms.video.polls.network.PollGetResponsesReply.isLast"]},{"name":"val isLocal: Boolean","description":"live.hms.video.sdk.models.HMSPeer.isLocal","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/is-local.html","searchKeys":["isLocal","val isLocal: Boolean","live.hms.video.sdk.models.HMSPeer.isLocal"]},{"name":"val isLocalAudioMuted: Boolean","description":"live.hms.video.sdk.models.LastTrackState.isLocalAudioMuted","location":"lib/live.hms.video.sdk.models/-last-track-state/is-local-audio-muted.html","searchKeys":["isLocalAudioMuted","val isLocalAudioMuted: Boolean","live.hms.video.sdk.models.LastTrackState.isLocalAudioMuted"]},{"name":"val isLocalVideoMuted: Boolean","description":"live.hms.video.sdk.models.LastTrackState.isLocalVideoMuted","location":"lib/live.hms.video.sdk.models/-last-track-state/is-local-video-muted.html","searchKeys":["isLocalVideoMuted","val isLocalVideoMuted: Boolean","live.hms.video.sdk.models.LastTrackState.isLocalVideoMuted"]},{"name":"val isLogStorageEnabled: Boolean = false","description":"live.hms.video.media.settings.HMSLogSettings.isLogStorageEnabled","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/is-log-storage-enabled.html","searchKeys":["isLogStorageEnabled","val isLogStorageEnabled: Boolean = false","live.hms.video.media.settings.HMSLogSettings.isLogStorageEnabled"]},{"name":"val isOwner: Boolean","description":"live.hms.video.whiteboard.HMSWhiteboard.isOwner","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/is-owner.html","searchKeys":["isOwner","val isOwner: Boolean","live.hms.video.whiteboard.HMSWhiteboard.isOwner"]},{"name":"val isPrebuilt: Boolean","description":"live.hms.video.sdk.models.FrameworkInfo.isPrebuilt","location":"lib/live.hms.video.sdk.models/-framework-info/is-prebuilt.html","searchKeys":["isPrebuilt","val isPrebuilt: Boolean","live.hms.video.sdk.models.FrameworkInfo.isPrebuilt"]},{"name":"val isReleaseSigned: Boolean","description":"live.hms.video.sdk.SignatureChecker.isReleaseSigned","location":"lib/live.hms.video.sdk/-signature-checker/is-release-signed.html","searchKeys":["isReleaseSigned","val isReleaseSigned: Boolean","live.hms.video.sdk.SignatureChecker.isReleaseSigned"]},{"name":"val isScreenSharePublished: Boolean","description":"live.hms.video.sdk.models.LastTrackState.isScreenSharePublished","location":"lib/live.hms.video.sdk.models/-last-track-state/is-screen-share-published.html","searchKeys":["isScreenSharePublished","val isScreenSharePublished: Boolean","live.hms.video.sdk.models.LastTrackState.isScreenSharePublished"]},{"name":"val isSubscribed: Boolean","description":"live.hms.video.media.streams.models.PreferLayerAudio.isSubscribed","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/is-subscribed.html","searchKeys":["isSubscribed","val isSubscribed: Boolean","live.hms.video.media.streams.models.PreferLayerAudio.isSubscribed"]},{"name":"val isSuccess: Boolean","description":"live.hms.video.polls.network.QuestionContainer.isSuccess","location":"lib/live.hms.video.polls.network/-question-container/is-success.html","searchKeys":["isSuccess","val isSuccess: Boolean","live.hms.video.polls.network.QuestionContainer.isSuccess"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSLocalAudioStats.jitter"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.jitter"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSRemoteAudioStats.jitter"]},{"name":"val jitter: Double?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.jitter","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/jitter.html","searchKeys":["jitter","val jitter: Double?","live.hms.video.connection.stats.HMSRemoteVideoStats.jitter"]},{"name":"val jitterBufferDelayAverage: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.jitterBufferDelayAverage","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/jitter-buffer-delay-average.html","searchKeys":["jitterBufferDelayAverage","val jitterBufferDelayAverage: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.jitterBufferDelayAverage"]},{"name":"val jitterBufferEmittedCount: BigInteger?","description":"live.hms.video.connection.degredation.Audio.jitterBufferEmittedCount","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-emitted-count.html","searchKeys":["jitterBufferEmittedCount","val jitterBufferEmittedCount: BigInteger?","live.hms.video.connection.degredation.Audio.jitterBufferEmittedCount"]},{"name":"val jitterBufferFlushes: BigInteger?","description":"live.hms.video.connection.degredation.Audio.jitterBufferFlushes","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-flushes.html","searchKeys":["jitterBufferFlushes","val jitterBufferFlushes: BigInteger?","live.hms.video.connection.degredation.Audio.jitterBufferFlushes"]},{"name":"val jitterBufferTargetDelay: Double?","description":"live.hms.video.connection.degredation.Audio.jitterBufferTargetDelay","location":"lib/live.hms.video.connection.degredation/-audio/jitter-buffer-target-delay.html","searchKeys":["jitterBufferTargetDelay","val jitterBufferTargetDelay: Double?","live.hms.video.connection.degredation.Audio.jitterBufferTargetDelay"]},{"name":"val jitterMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.jitterMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/jitter-ms.html","searchKeys":["jitterMs","val jitterMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.jitterMs"]},{"name":"val jitterMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.jitterMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/jitter-ms.html","searchKeys":["jitterMs","val jitterMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.jitterMs"]},{"name":"val joinBtnLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/join-btn-label.html","searchKeys":["joinBtnLabel","val joinBtnLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnLabel"]},{"name":"val joinBtnType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-join-form/join-btn-type.html","searchKeys":["joinBtnType","val joinBtnType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm.joinBtnType"]},{"name":"val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.joinForm","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/join-form.html","searchKeys":["joinForm","val joinForm: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.JoinForm?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.joinForm"]},{"name":"val joined_at: Long","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.joined_at","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/joined_at.html","searchKeys":["joined_at","val joined_at: Long","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.joined_at"]},{"name":"val jsonRpc: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.jsonRpc","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/json-rpc.html","searchKeys":["jsonRpc","val jsonRpc: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.jsonRpc"]},{"name":"val key1: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key1","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/key1.html","searchKeys":["key1","val key1: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key1"]},{"name":"val key2: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key2","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-layout-options/key2.html","searchKeys":["key2","val key2: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions.key2"]},{"name":"val last: Boolean","description":"live.hms.video.polls.network.PollQuestionGetResponse.last","location":"lib/live.hms.video.polls.network/-poll-question-get-response/last.html","searchKeys":["last","val last: Boolean","live.hms.video.polls.network.PollQuestionGetResponse.last"]},{"name":"val last: Boolean?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.last","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/last.html","searchKeys":["last","val last: Boolean?","live.hms.video.polls.network.HMSPollLeaderboardResponse.last"]},{"name":"val last: String?","description":"live.hms.video.signal.init.HMSRoomLayout.last","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/last.html","searchKeys":["last","val last: String?","live.hms.video.signal.init.HMSRoomLayout.last"]},{"name":"val layer: HMSLayer","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.layer","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/layer.html","searchKeys":["layer","val layer: HMSLayer","live.hms.video.media.settings.HMSSimulcastLayerDefinition.layer"]},{"name":"val layer: String","description":"live.hms.video.media.streams.models.PreferLayer.layer","location":"lib/live.hms.video.media.streams.models/-prefer-layer/layer.html","searchKeys":["layer","val layer: String","live.hms.video.media.streams.models.PreferLayer.layer"]},{"name":"val layers: ArrayList?","description":"live.hms.video.sdk.models.role.VideoSimulcastLayersParams.layers","location":"lib/live.hms.video.sdk.models.role/-video-simulcast-layers-params/layers.html","searchKeys":["layers","val layers: ArrayList?","live.hms.video.sdk.models.role.VideoSimulcastLayersParams.layers"]},{"name":"val leaderboard: List?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.leaderboard","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/leaderboard.html","searchKeys":["leaderboard","val leaderboard: List?","live.hms.video.polls.network.HMSPollLeaderboardResponse.leaderboard"]},{"name":"val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.leave","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/leave.html","searchKeys":["leave","val leave: HMSRoomLayout.HMSRoomLayoutData.Screens.Leave?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.leave"]},{"name":"val level: HMSLogger.LogLevel","description":"live.hms.video.media.settings.HMSLogSettings.level","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/level.html","searchKeys":["level","val level: HMSLogger.LogLevel","live.hms.video.media.settings.HMSLogSettings.level"]},{"name":"val level: Int","description":"live.hms.video.sdk.models.HMSSpeaker.level","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/level.html","searchKeys":["level","val level: Int","live.hms.video.sdk.models.HMSSpeaker.level"]},{"name":"val libraryPresent: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationFake.libraryPresent","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-fake/library-present.html","searchKeys":["libraryPresent","val libraryPresent: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationFake.libraryPresent"]},{"name":"val libraryPresent: Boolean","description":"live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.libraryPresent","location":"lib/live.hms.video.factories.noisecancellation/-noise-cancellation-status-checker/library-present.html","searchKeys":["libraryPresent","val libraryPresent: Boolean","live.hms.video.factories.noisecancellation.NoiseCancellationStatusChecker.libraryPresent"]},{"name":"val limit: Int","description":"live.hms.video.sdk.models.PeerSearchResponse.limit","location":"lib/live.hms.video.sdk.models/-peer-search-response/limit.html","searchKeys":["limit","val limit: Int","live.hms.video.sdk.models.PeerSearchResponse.limit"]},{"name":"val limit: Int = 10","description":"live.hms.video.sdk.models.PeerListIteratorOptions.limit","location":"lib/live.hms.video.sdk.models/-peer-list-iterator-options/limit.html","searchKeys":["limit","val limit: Int = 10","live.hms.video.sdk.models.PeerListIteratorOptions.limit"]},{"name":"val localPeer: HMSLocalPeer?","description":"live.hms.video.sdk.models.HMSRoom.localPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-room/local-peer.html","searchKeys":["localPeer","val localPeer: HMSLocalPeer?","live.hms.video.sdk.models.HMSRoom.localPeer"]},{"name":"val locked: Boolean = false","description":"live.hms.video.polls.models.HmsPollCreationParams.locked","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/locked.html","searchKeys":["locked","val locked: Boolean = false","live.hms.video.polls.models.HmsPollCreationParams.locked"]},{"name":"val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.logo","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/logo.html","searchKeys":["logo","val logo: HMSRoomLayout.HMSRoomLayoutData.Logo?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.logo"]},{"name":"val low: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.low","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/low.html","searchKeys":["low","val low: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.low"]},{"name":"val low: Long","description":"live.hms.video.signal.init.RangeLimits.low","location":"lib/live.hms.video.signal.init/-range-limits/low.html","searchKeys":["low","val low: Long","live.hms.video.signal.init.RangeLimits.low"]},{"name":"val maxBitrate: Int?","description":"live.hms.video.sdk.models.role.LayerParams.maxBitrate","location":"lib/live.hms.video.sdk.models.role/-layer-params/max-bitrate.html","searchKeys":["maxBitrate","val maxBitrate: Int?","live.hms.video.sdk.models.role.LayerParams.maxBitrate"]},{"name":"val maxDirSizeInBytes: Long","description":"live.hms.video.media.settings.HMSLogSettings.maxDirSizeInBytes","location":"lib/live.hms.video.media.settings/-h-m-s-log-settings/max-dir-size-in-bytes.html","searchKeys":["maxDirSizeInBytes","val maxDirSizeInBytes: Long","live.hms.video.media.settings.HMSLogSettings.maxDirSizeInBytes"]},{"name":"val maxFramerate: Int?","description":"live.hms.video.sdk.models.role.LayerParams.maxFramerate","location":"lib/live.hms.video.sdk.models.role/-layer-params/max-framerate.html","searchKeys":["maxFramerate","val maxFramerate: Int?","live.hms.video.sdk.models.role.LayerParams.maxFramerate"]},{"name":"val maxPeerCount: Long","description":"live.hms.video.sdk.models.role.HMSRole.maxPeerCount","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/max-peer-count.html","searchKeys":["maxPeerCount","val maxPeerCount: Long","live.hms.video.sdk.models.role.HMSRole.maxPeerCount"]},{"name":"val maxSamplePushInterval: Float?","description":"live.hms.video.signal.init.Stats.maxSamplePushInterval","location":"lib/live.hms.video.signal.init/-stats/max-sample-push-interval.html","searchKeys":["maxSamplePushInterval","val maxSamplePushInterval: Float?","live.hms.video.signal.init.Stats.maxSamplePushInterval"]},{"name":"val maxSampleWindowSize: Float?","description":"live.hms.video.signal.init.Stats.maxSampleWindowSize","location":"lib/live.hms.video.signal.init/-stats/max-sample-window-size.html","searchKeys":["maxSampleWindowSize","val maxSampleWindowSize: Float?","live.hms.video.signal.init.Stats.maxSampleWindowSize"]},{"name":"val maxSubsBitRate: Int","description":"live.hms.video.sdk.models.role.SubscribeParams.maxSubsBitRate","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/max-subs-bit-rate.html","searchKeys":["maxSubsBitRate","val maxSubsBitRate: Int","live.hms.video.sdk.models.role.SubscribeParams.maxSubsBitRate"]},{"name":"val maxWindowSecond: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.maxWindowSecond","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/max-window-second.html","searchKeys":["maxWindowSecond","val maxWindowSecond: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.maxWindowSecond"]},{"name":"val mediaServerReport: MediaServerReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.mediaServerReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/media-server-report.html","searchKeys":["mediaServerReport","val mediaServerReport: MediaServerReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.mediaServerReport"]},{"name":"val mediaType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.mediaType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/media-type.html","searchKeys":["mediaType","val mediaType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.mediaType"]},{"name":"val mediaType: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.mediaType","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/media-type.html","searchKeys":["mediaType","val mediaType: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.mediaType"]},{"name":"val medium: HMSSimulcastSettings.Item","description":"live.hms.video.media.settings.HMSSimulcastSettings.medium","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-settings/medium.html","searchKeys":["medium","val medium: HMSSimulcastSettings.Item","live.hms.video.media.settings.HMSSimulcastSettings.medium"]},{"name":"val meetingURLVariants: List? = null","description":"live.hms.video.sdk.models.HMSHLSConfig.meetingURLVariants","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-config/meeting-u-r-l-variants.html","searchKeys":["meetingURLVariants","val meetingURLVariants: List? = null","live.hms.video.sdk.models.HMSHLSConfig.meetingURLVariants"]},{"name":"val meetingUrl: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String?","live.hms.video.sdk.models.HMSHLSVariant.meetingUrl"]},{"name":"val meetingUrl: String? = null","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String? = null","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.meetingUrl"]},{"name":"val meetingUrl: String? = null","description":"live.hms.video.sdk.models.HMSRecordingConfig.meetingUrl","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/meeting-url.html","searchKeys":["meetingUrl","val meetingUrl: String? = null","live.hms.video.sdk.models.HMSRecordingConfig.meetingUrl"]},{"name":"val message: String","description":"live.hms.video.sdk.Unstable.message","location":"lib/live.hms.video.sdk/-unstable/message.html","searchKeys":["message","val message: String","live.hms.video.sdk.Unstable.message"]},{"name":"val message: String","description":"live.hms.video.sdk.models.HMSMessage.message","location":"lib/live.hms.video.sdk.models/-h-m-s-message/message.html","searchKeys":["message","val message: String","live.hms.video.sdk.models.HMSMessage.message"]},{"name":"val message: String?","description":"live.hms.video.media.streams.models.PreferStateResponseError.message","location":"lib/live.hms.video.media.streams.models/-prefer-state-response-error/message.html","searchKeys":["message","val message: String?","live.hms.video.media.streams.models.PreferStateResponseError.message"]},{"name":"val message: String?","description":"live.hms.video.sdk.models.OnTranscriptionError.message","location":"lib/live.hms.video.sdk.models/-on-transcription-error/message.html","searchKeys":["message","val message: String?","live.hms.video.sdk.models.OnTranscriptionError.message"]},{"name":"val messageId: String","description":"live.hms.video.sdk.models.HMSMessage.messageId","location":"lib/live.hms.video.sdk.models/-h-m-s-message/message-id.html","searchKeys":["messageId","val messageId: String","live.hms.video.sdk.models.HMSMessage.messageId"]},{"name":"val messageId: String?","description":"live.hms.video.sdk.models.HMSMessageSendResponse.messageId","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/message-id.html","searchKeys":["messageId","val messageId: String?","live.hms.video.sdk.models.HMSMessageSendResponse.messageId"]},{"name":"val messagePlaceholder: String","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.messagePlaceholder","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/message-placeholder.html","searchKeys":["messagePlaceholder","val messagePlaceholder: String","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.messagePlaceholder"]},{"name":"val metadata: CaptureResult","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.metadata","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/metadata.html","searchKeys":["metadata","val metadata: CaptureResult","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.metadata"]},{"name":"val metadata: String","description":"live.hms.video.sdk.models.HMSHLSMeetingURLVariant.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-meeting-u-r-l-variant/metadata.html","searchKeys":["metadata","val metadata: String","live.hms.video.sdk.models.HMSHLSMeetingURLVariant.metadata"]},{"name":"val metadata: String?","description":"live.hms.video.sdk.models.HMSHLSVariant.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/metadata.html","searchKeys":["metadata","val metadata: String?","live.hms.video.sdk.models.HMSHLSVariant.metadata"]},{"name":"val method: String","description":"live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.method","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-data-channel-request-method/method.html","searchKeys":["method","val method: String","live.hms.video.connection.subscribe.queuemanagement.DataChannelRequestMethod.method"]},{"name":"val method: String","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.method","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/method.html","searchKeys":["method","val method: String","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.method"]},{"name":"val mode: HmsPollUserTrackingMode","description":"live.hms.video.polls.HMSPollBuilder.mode","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode","live.hms.video.polls.HMSPollBuilder.mode"]},{"name":"val mode: HmsPollUserTrackingMode","description":"live.hms.video.polls.models.HmsPollCreationParams.mode","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode","live.hms.video.polls.models.HmsPollCreationParams.mode"]},{"name":"val mode: HmsPollUserTrackingMode?","description":"live.hms.video.polls.models.HmsPoll.mode","location":"lib/live.hms.video.polls.models/-hms-poll/mode.html","searchKeys":["mode","val mode: HmsPollUserTrackingMode?","live.hms.video.polls.models.HmsPoll.mode"]},{"name":"val mode: TranscriptionsMode?","description":"live.hms.video.sdk.models.Result.mode","location":"lib/live.hms.video.sdk.models/-result/mode.html","searchKeys":["mode","val mode: TranscriptionsMode?","live.hms.video.sdk.models.Result.mode"]},{"name":"val mute: Boolean","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.mute","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/mute.html","searchKeys":["mute","val mute: Boolean","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.mute"]},{"name":"val mute: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.mute","location":"lib/live.hms.video.sdk.models.role/-permissions-params/mute.html","searchKeys":["mute","val mute: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.mute"]},{"name":"val myResponses: MutableList","description":"live.hms.video.polls.models.question.HMSPollQuestion.myResponses","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/my-responses.html","searchKeys":["myResponses","val myResponses: MutableList","live.hms.video.polls.models.question.HMSPollQuestion.myResponses"]},{"name":"val nackCount: Long?","description":"live.hms.video.connection.degredation.Video.nackCount","location":"lib/live.hms.video.connection.degredation/-video/nack-count.html","searchKeys":["nackCount","val nackCount: Long?","live.hms.video.connection.degredation.Video.nackCount"]},{"name":"val name: String","description":"live.hms.video.audio.HMSAudioDeviceInfo.name","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/name.html","searchKeys":["name","val name: String","live.hms.video.audio.HMSAudioDeviceInfo.name"]},{"name":"val name: String","description":"live.hms.video.error.HMSException.name","location":"lib/live.hms.video.error/-h-m-s-exception/name.html","searchKeys":["name","val name: String","live.hms.video.error.HMSException.name"]},{"name":"val name: String","description":"live.hms.video.sdk.models.role.HMSRole.name","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/name.html","searchKeys":["name","val name: String","live.hms.video.sdk.models.role.HMSRole.name"]},{"name":"val name: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.name","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/name.html","searchKeys":["name","val name: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.name"]},{"name":"val negative: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestion.negative","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/negative.html","searchKeys":["negative","val negative: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestion.negative"]},{"name":"val negative: Boolean = false","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.negative","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/negative.html","searchKeys":["negative","val negative: Boolean = false","live.hms.video.polls.models.question.HmsPollQuestionCreation.negative"]},{"name":"val networkHealth: NetworkHealth?","description":"live.hms.video.signal.init.ServerConfiguration.networkHealth","location":"lib/live.hms.video.signal.init/-server-configuration/network-health.html","searchKeys":["networkHealth","val networkHealth: NetworkHealth?","live.hms.video.signal.init.ServerConfiguration.networkHealth"]},{"name":"val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.noiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/noise-cancellation-element.html","searchKeys":["noiseCancellationElement","val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.NoiseCancellationElement?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.noiseCancellationElement"]},{"name":"val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.noiseCancellationElement","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/noise-cancellation-element.html","searchKeys":["noiseCancellationElement","val noiseCancellationElement: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.NoiseCancellationElement?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.noiseCancellationElement"]},{"name":"val none: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.none","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/none.html","searchKeys":["none","val none: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.none"]},{"name":"val offStageRoles: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.offStageRoles","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/off-stage-roles.html","searchKeys":["offStageRoles","val offStageRoles: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.offStageRoles"]},{"name":"val offset: Long","description":"live.hms.video.sdk.models.PeerSearchResponse.offset","location":"lib/live.hms.video.sdk.models/-peer-search-response/offset.html","searchKeys":["offset","val offset: Long","live.hms.video.sdk.models.PeerSearchResponse.offset"]},{"name":"val onPrimaryHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-high.html","searchKeys":["onPrimaryHigh","val onPrimaryHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryHigh"]},{"name":"val onPrimaryLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-low.html","searchKeys":["onPrimaryLow","val onPrimaryLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryLow"]},{"name":"val onPrimaryMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-primary-medium.html","searchKeys":["onPrimaryMedium","val onPrimaryMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onPrimaryMedium"]},{"name":"val onSecondaryHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-high.html","searchKeys":["onSecondaryHigh","val onSecondaryHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryHigh"]},{"name":"val onSecondaryLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-low.html","searchKeys":["onSecondaryLow","val onSecondaryLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryLow"]},{"name":"val onSecondaryMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-secondary-medium.html","searchKeys":["onSecondaryMedium","val onSecondaryMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSecondaryMedium"]},{"name":"val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.onStageExp","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/on-stage-exp.html","searchKeys":["onStageExp","val onStageExp: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.onStageExp"]},{"name":"val onStageRole: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.onStageRole","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/on-stage-role.html","searchKeys":["onStageRole","val onStageRole: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.onStageRole"]},{"name":"val onSurfaceHigh: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceHigh","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-high.html","searchKeys":["onSurfaceHigh","val onSurfaceHigh: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceHigh"]},{"name":"val onSurfaceLow: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceLow","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-low.html","searchKeys":["onSurfaceLow","val onSurfaceLow: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceLow"]},{"name":"val onSurfaceMedium: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceMedium","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/on-surface-medium.html","searchKeys":["onSurfaceMedium","val onSurfaceMedium: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.onSurfaceMedium"]},{"name":"val option: Int? = null","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.option","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/option.html","searchKeys":["option","val option: Int? = null","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.option"]},{"name":"val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.options","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/options.html","searchKeys":["options","val options: HMSRoomLayout.HMSRoomLayoutData.HMSLayoutOptions?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.options","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.question.HmsPollQuestionContainer.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.options","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.options"]},{"name":"val options: List? = null","description":"live.hms.video.polls.models.question.HMSPollQuestion.options","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/options.html","searchKeys":["options","val options: List? = null","live.hms.video.polls.models.question.HMSPollQuestion.options"]},{"name":"val options: List? = null","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.options","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/options.html","searchKeys":["options","val options: List? = null","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.options"]},{"name":"val options: List?","description":"live.hms.video.polls.models.PollStatsQuestions.options","location":"lib/live.hms.video.polls.models/-poll-stats-questions/options.html","searchKeys":["options","val options: List?","live.hms.video.polls.models.PollStatsQuestions.options"]},{"name":"val orientation: Int?","description":"live.hms.video.media.capturers.camera.utils.ImageCaptureModel.orientation","location":"lib/live.hms.video.media.capturers.camera.utils/-image-capture-model/orientation.html","searchKeys":["orientation","val orientation: Int?","live.hms.video.media.capturers.camera.utils.ImageCaptureModel.orientation"]},{"name":"val other: Double? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.other","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/other.html","searchKeys":["other","val other: Double? = null","live.hms.video.connection.degredation.QualityLimitationReasons.other"]},{"name":"val overlayView: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.overlayView","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/overlay-view.html","searchKeys":["overlayView","val overlayView: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.overlayView"]},{"name":"val owner: HMSPeer? = null","description":"live.hms.video.whiteboard.HMSWhiteboard.owner","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/owner.html","searchKeys":["owner","val owner: HMSPeer? = null","live.hms.video.whiteboard.HMSWhiteboard.owner"]},{"name":"val owner: String?","description":"live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.owner","location":"lib/live.hms.video.whiteboard.network/-h-m-s-create-white-board-response/owner.html","searchKeys":["owner","val owner: String?","live.hms.video.whiteboard.network.HMSCreateWhiteBoardResponse.owner"]},{"name":"val owner: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.owner","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/owner.html","searchKeys":["owner","val owner: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.owner"]},{"name":"val packetLoss: Int?","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.packetLoss","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Int?","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.packetLoss"]},{"name":"val packetLoss: Long","description":"live.hms.video.connection.degredation.StatsBundle.packetLoss","location":"lib/live.hms.video.connection.degredation/-stats-bundle/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long","live.hms.video.connection.degredation.StatsBundle.packetLoss"]},{"name":"val packetLoss: Long?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.packetLoss","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long?","live.hms.video.connection.stats.HMSLocalAudioStats.packetLoss"]},{"name":"val packetLoss: Long?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.packetLoss","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/packet-loss.html","searchKeys":["packetLoss","val packetLoss: Long?","live.hms.video.connection.stats.HMSLocalVideoStats.packetLoss"]},{"name":"val packetLossThreshold: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.packetLossThreshold","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/packet-loss-threshold.html","searchKeys":["packetLossThreshold","val packetLossThreshold: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.packetLossThreshold"]},{"name":"val packetLossTracks: MutableMap","description":"live.hms.video.connection.degredation.StatsBundle.packetLossTracks","location":"lib/live.hms.video.connection.degredation/-stats-bundle/packet-loss-tracks.html","searchKeys":["packetLossTracks","val packetLossTracks: MutableMap","live.hms.video.connection.degredation.StatsBundle.packetLossTracks"]},{"name":"val packetsLost: Int?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Int?","live.hms.video.connection.stats.HMSRemoteAudioStats.packetsLost"]},{"name":"val packetsLost: Int?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Int?","live.hms.video.connection.stats.HMSRemoteVideoStats.packetsLost"]},{"name":"val packetsLost: Long","description":"live.hms.video.connection.stats.HMSRTCStats.packetsLost","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/packets-lost.html","searchKeys":["packetsLost","val packetsLost: Long","live.hms.video.connection.stats.HMSRTCStats.packetsLost"]},{"name":"val packetsReceived: BigInteger?","description":"live.hms.video.connection.degredation.Peer.packetsReceived","location":"lib/live.hms.video.connection.degredation/-peer/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: BigInteger?","live.hms.video.connection.degredation.Peer.packetsReceived"]},{"name":"val packetsReceived: Long","description":"live.hms.video.connection.stats.HMSRTCStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long","live.hms.video.connection.stats.HMSRTCStats.packetsReceived"]},{"name":"val packetsReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteAudioStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-audio-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long?","live.hms.video.connection.stats.HMSRemoteAudioStats.packetsReceived"]},{"name":"val packetsReceived: Long?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.packetsReceived","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/packets-received.html","searchKeys":["packetsReceived","val packetsReceived: Long?","live.hms.video.connection.stats.HMSRemoteVideoStats.packetsReceived"]},{"name":"val packetsSent: BigInteger?","description":"live.hms.video.connection.degredation.Peer.packetsSent","location":"lib/live.hms.video.connection.degredation/-peer/packets-sent.html","searchKeys":["packetsSent","val packetsSent: BigInteger?","live.hms.video.connection.degredation.Peer.packetsSent"]},{"name":"val packetsSent: Long","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.packetsSent","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.packetsSent","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.packetsSent","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.packetsSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.stats.HMSLocalAudioStats.packetsSent"]},{"name":"val packetsSent: Long?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.packetsSent","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/packets-sent.html","searchKeys":["packetsSent","val packetsSent: Long?","live.hms.video.connection.stats.HMSLocalVideoStats.packetsSent"]},{"name":"val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.palette","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/palette.html","searchKeys":["palette","val palette: HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.palette"]},{"name":"val params: HMSDataChannelRequestParams","description":"live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.params","location":"lib/live.hms.video.connection.subscribe.queuemanagement/-rpc-request-wrapper/params.html","searchKeys":["params","val params: HMSDataChannelRequestParams","live.hms.video.connection.subscribe.queuemanagement.RpcRequestWrapper.params"]},{"name":"val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.participantList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/participant-list.html","searchKeys":["participantList","val participantList: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.ParticipantList?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.participantList"]},{"name":"val payload: String","description":"live.hms.video.sdk.models.HMSHLSTimedMetadata.payload","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-timed-metadata/payload.html","searchKeys":["payload","val payload: String","live.hms.video.sdk.models.HMSHLSTimedMetadata.payload"]},{"name":"val peer: HMSPeer?","description":"live.hms.video.sdk.models.HMSSpeaker.peer","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/peer.html","searchKeys":["peer","val peer: HMSPeer?","live.hms.video.sdk.models.HMSSpeaker.peer"]},{"name":"val peer: HMSPeer?","description":"live.hms.video.sdk.transcripts.HmsTranscript.peer","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/peer.html","searchKeys":["peer","val peer: HMSPeer?","live.hms.video.sdk.transcripts.HmsTranscript.peer"]},{"name":"val peer: HMSPollResponsePeerInfo","description":"live.hms.video.polls.models.network.SingleResponse.peer","location":"lib/live.hms.video.polls.models.network/-single-response/peer.html","searchKeys":["peer","val peer: HMSPollResponsePeerInfo","live.hms.video.polls.models.network.SingleResponse.peer"]},{"name":"val peer: HMSPollResponsePeerInfo?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.peer","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/peer.html","searchKeys":["peer","val peer: HMSPollResponsePeerInfo?","live.hms.video.polls.network.HMSPollLeaderboardEntry.peer"]},{"name":"val peerID: String","description":"live.hms.video.sdk.models.HMSPeer.peerID","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/peer-i-d.html","searchKeys":["peerID","val peerID: String","live.hms.video.sdk.models.HMSPeer.peerID"]},{"name":"val peerId: String","description":"live.hms.video.sdk.models.HMSSpeaker.peerId","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/peer-id.html","searchKeys":["peerId","val peerId: String","live.hms.video.sdk.models.HMSSpeaker.peerId"]},{"name":"val peerId: String","description":"live.hms.video.sdk.transcripts.HmsTranscript.peerId","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/peer-id.html","searchKeys":["peerId","val peerId: String","live.hms.video.sdk.transcripts.HmsTranscript.peerId"]},{"name":"val peerList: List","description":"live.hms.video.sdk.models.HMSRoom.peerList","location":"lib/live.hms.video.sdk.models/-h-m-s-room/peer-list.html","searchKeys":["peerList","val peerList: List","live.hms.video.sdk.models.HMSRoom.peerList"]},{"name":"val peerWhoRemoved: HMSPeer?","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.peerWhoRemoved","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/peer-who-removed.html","searchKeys":["peerWhoRemoved","val peerWhoRemoved: HMSPeer?","live.hms.video.sdk.models.HMSRemovedFromRoom.peerWhoRemoved"]},{"name":"val peerid: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.peerid","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/peerid.html","searchKeys":["peerid","val peerid: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.peerid"]},{"name":"val peers: List","description":"live.hms.video.sdk.models.PeerSearchResponse.peers","location":"lib/live.hms.video.sdk.models/-peer-search-response/peers.html","searchKeys":["peers","val peers: List","live.hms.video.sdk.models.PeerSearchResponse.peers"]},{"name":"val permission: PermissionsParams","description":"live.hms.video.sdk.models.role.HMSRole.permission","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/permission.html","searchKeys":["permission","val permission: PermissionsParams","live.hms.video.sdk.models.role.HMSRole.permission"]},{"name":"val permissions: List?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.permissions","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/permissions.html","searchKeys":["permissions","val permissions: List?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.permissions"]},{"name":"val phoneCallState: PhoneCallState","description":"live.hms.video.media.settings.HMSAudioTrackSettings.phoneCallState","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/phone-call-state.html","searchKeys":["phoneCallState","val phoneCallState: PhoneCallState","live.hms.video.media.settings.HMSAudioTrackSettings.phoneCallState"]},{"name":"val playlistType: HMSHLSPlaylistType?","description":"live.hms.video.sdk.models.HMSHLSVariant.playlistType","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/playlist-type.html","searchKeys":["playlistType","val playlistType: HMSHLSPlaylistType?","live.hms.video.sdk.models.HMSHLSVariant.playlistType"]},{"name":"val pliCount: Long?","description":"live.hms.video.connection.degredation.Video.pliCount","location":"lib/live.hms.video.connection.degredation/-video/pli-count.html","searchKeys":["pliCount","val pliCount: Long?","live.hms.video.connection.degredation.Video.pliCount"]},{"name":"val pollId: String","description":"live.hms.video.polls.HMSPollBuilder.pollId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.HMSPollBuilder.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.models.HmsPoll.pollId","location":"lib/live.hms.video.polls.models/-hms-poll/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.models.HmsPoll.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.models.answer.PollAnswerResponse.pollId","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.models.answer.PollAnswerResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.pollId","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.HMSPollLeaderboardResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollCreateResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-create-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollCreateResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollGetResponsesReply.pollId","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollGetResponsesReply.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollQuestionGetResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-question-get-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollQuestionGetResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollResultsResponse.pollId","location":"lib/live.hms.video.polls.network/-poll-results-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollResultsResponse.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.PollStartRequest.pollId","location":"lib/live.hms.video.polls.network/-poll-start-request/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.PollStartRequest.pollId"]},{"name":"val pollId: String","description":"live.hms.video.polls.network.SetQuestionsResponse.pollId","location":"lib/live.hms.video.polls.network/-set-questions-response/poll-id.html","searchKeys":["pollId","val pollId: String","live.hms.video.polls.network.SetQuestionsResponse.pollId"]},{"name":"val pollId: String? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.pollId","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/poll-id.html","searchKeys":["pollId","val pollId: String? = null","live.hms.video.polls.models.HmsPollCreationParams.pollId"]},{"name":"val pollPeer: HMSPollResponsePeerInfo?","description":"live.hms.video.polls.network.LeaderboardQuestion.pollPeer","location":"lib/live.hms.video.polls.network/-leaderboard-question/poll-peer.html","searchKeys":["pollPeer","val pollPeer: HMSPollResponsePeerInfo?","live.hms.video.polls.network.LeaderboardQuestion.pollPeer"]},{"name":"val pollRead: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.pollRead","location":"lib/live.hms.video.sdk.models.role/-permissions-params/poll-read.html","searchKeys":["pollRead","val pollRead: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.pollRead"]},{"name":"val pollWrite: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.pollWrite","location":"lib/live.hms.video.sdk.models.role/-permissions-params/poll-write.html","searchKeys":["pollWrite","val pollWrite: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.pollWrite"]},{"name":"val polls: List","description":"live.hms.video.interactivity.HmsInteractivityCenter.polls","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/polls.html","searchKeys":["polls","val polls: List","live.hms.video.interactivity.HmsInteractivityCenter.polls"]},{"name":"val position: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.position","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/position.html","searchKeys":["position","val position: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.position"]},{"name":"val position: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.position","location":"lib/live.hms.video.polls.network/-leaderboard-question/position.html","searchKeys":["position","val position: Long?","live.hms.video.polls.network.LeaderboardQuestion.position"]},{"name":"val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.preview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/preview.html","searchKeys":["preview","val preview: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.preview"]},{"name":"val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.previewHeader","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/preview-header.html","searchKeys":["previewHeader","val previewHeader: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.previewHeader"]},{"name":"val primaryBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-bright.html","searchKeys":["primaryBright","val primaryBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryBright"]},{"name":"val primaryDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-default.html","searchKeys":["primaryDefault","val primaryDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDefault"]},{"name":"val primaryDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-dim.html","searchKeys":["primaryDim","val primaryDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDim"]},{"name":"val primaryDisabled: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDisabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/primary-disabled.html","searchKeys":["primaryDisabled","val primaryDisabled: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.primaryDisabled"]},{"name":"val priority: Int","description":"live.hms.video.sdk.models.role.HMSRole.priority","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/priority.html","searchKeys":["priority","val priority: Int","live.hms.video.sdk.models.role.HMSRole.priority"]},{"name":"val privateChatEnabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.privateChatEnabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/private-chat-enabled.html","searchKeys":["privateChatEnabled","val privateChatEnabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.privateChatEnabled"]},{"name":"val prominentRoles: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.prominentRoles","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-video-tile-layout/-grid/prominent-roles.html","searchKeys":["prominentRoles","val prominentRoles: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout.Grid.prominentRoles"]},{"name":"val publicChatEnabled: Boolean","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.publicChatEnabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/public-chat-enabled.html","searchKeys":["publicChatEnabled","val publicChatEnabled: Boolean","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.publicChatEnabled"]},{"name":"val publishIceCandidatesGathered: List","description":"live.hms.video.diagnostics.models.MediaServerReport.publishIceCandidatesGathered","location":"lib/live.hms.video.diagnostics.models/-media-server-report/publish-ice-candidates-gathered.html","searchKeys":["publishIceCandidatesGathered","val publishIceCandidatesGathered: List","live.hms.video.diagnostics.models.MediaServerReport.publishIceCandidatesGathered"]},{"name":"val publishStats: Stats?","description":"live.hms.video.signal.init.ServerConfiguration.publishStats","location":"lib/live.hms.video.signal.init/-server-configuration/publish-stats.html","searchKeys":["publishStats","val publishStats: Stats?","live.hms.video.signal.init.ServerConfiguration.publishStats"]},{"name":"val qualityLimitationReason: QualityLimitationReasons","description":"live.hms.video.connection.stats.HMSLocalVideoStats.qualityLimitationReason","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/quality-limitation-reason.html","searchKeys":["qualityLimitationReason","val qualityLimitationReason: QualityLimitationReasons","live.hms.video.connection.stats.HMSLocalVideoStats.qualityLimitationReason"]},{"name":"val qualityLimitationResolutionChanges: Long? = null","description":"live.hms.video.connection.degredation.QualityLimitationReasons.qualityLimitationResolutionChanges","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/quality-limitation-resolution-changes.html","searchKeys":["qualityLimitationResolutionChanges","val qualityLimitationResolutionChanges: Long? = null","live.hms.video.connection.degredation.QualityLimitationReasons.qualityLimitationResolutionChanges"]},{"name":"val qualityLimitations: QualityLimitationReasons","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.qualityLimitations","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/quality-limitations.html","searchKeys":["qualityLimitations","val qualityLimitations: QualityLimitationReasons","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.qualityLimitations"]},{"name":"val question: HMSPollQuestion","description":"live.hms.video.polls.models.question.HmsPollQuestionContainer.question","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-container/question.html","searchKeys":["question","val question: HMSPollQuestion","live.hms.video.polls.models.question.HmsPollQuestionContainer.question"]},{"name":"val question: List","description":"live.hms.video.polls.network.PollResultsResponse.question","location":"lib/live.hms.video.polls.network/-poll-results-response/question.html","searchKeys":["question","val question: List","live.hms.video.polls.network.PollResultsResponse.question"]},{"name":"val questionContainer: HmsPollQuestionCreation","description":"live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.questionContainer","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-setting-container/question-container.html","searchKeys":["questionContainer","val questionContainer: HmsPollQuestionCreation","live.hms.video.polls.models.question.HmsPollQuestionSettingContainer.questionContainer"]},{"name":"val questionCount: Int? = null","description":"live.hms.video.polls.models.HmsPoll.questionCount","location":"lib/live.hms.video.polls.models/-hms-poll/question-count.html","searchKeys":["questionCount","val questionCount: Int? = null","live.hms.video.polls.models.HmsPoll.questionCount"]},{"name":"val questionID: Int","description":"live.hms.video.polls.models.question.HMSPollQuestion.questionID","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/question-i-d.html","searchKeys":["questionID","val questionID: Int","live.hms.video.polls.models.question.HMSPollQuestion.questionID"]},{"name":"val questionID: Int","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.questionID","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/question-i-d.html","searchKeys":["questionID","val questionID: Int","live.hms.video.polls.models.question.HmsPollQuestionCreation.questionID"]},{"name":"val questionId: Int","description":"live.hms.video.polls.models.answer.HmsPollAnswer.questionId","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/question-id.html","searchKeys":["questionId","val questionId: Int","live.hms.video.polls.models.answer.HmsPollAnswer.questionId"]},{"name":"val questionIndex: Int","description":"live.hms.video.polls.models.answer.PollAnswerItem.questionIndex","location":"lib/live.hms.video.polls.models.answer/-poll-answer-item/question-index.html","searchKeys":["questionIndex","val questionIndex: Int","live.hms.video.polls.models.answer.PollAnswerItem.questionIndex"]},{"name":"val questionIndex: Long","description":"live.hms.video.polls.network.PollResultsItems.questionIndex","location":"lib/live.hms.video.polls.network/-poll-results-items/question-index.html","searchKeys":["questionIndex","val questionIndex: Long","live.hms.video.polls.network.PollResultsItems.questionIndex"]},{"name":"val questionIndex: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.questionIndex","location":"lib/live.hms.video.polls.network/-leaderboard-question/question-index.html","searchKeys":["questionIndex","val questionIndex: Long?","live.hms.video.polls.network.LeaderboardQuestion.questionIndex"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.PollStatsQuestions.questionType","location":"lib/live.hms.video.polls.models/-poll-stats-questions/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.PollStatsQuestions.questionType"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.answer.HmsPollAnswer.questionType","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.answer.HmsPollAnswer.questionType"]},{"name":"val questionType: HMSPollQuestionType","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.questionType","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/question-type.html","searchKeys":["questionType","val questionType: HMSPollQuestionType","live.hms.video.polls.models.network.HMSPollQuestionResponse.questionType"]},{"name":"val questions: List","description":"live.hms.video.polls.HMSPollBuilder.questions","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.HMSPollBuilder.questions"]},{"name":"val questions: List? = null","description":"live.hms.video.polls.network.QuestionContainer.questions","location":"lib/live.hms.video.polls.network/-question-container/questions.html","searchKeys":["questions","val questions: List? = null","live.hms.video.polls.network.QuestionContainer.questions"]},{"name":"val questions: List","description":"live.hms.video.polls.network.PollQuestionGetResponse.questions","location":"lib/live.hms.video.polls.network/-poll-question-get-response/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.network.PollQuestionGetResponse.questions"]},{"name":"val questions: List","description":"live.hms.video.polls.network.PollResultsDisplay.questions","location":"lib/live.hms.video.polls.network/-poll-results-display/questions.html","searchKeys":["questions","val questions: List","live.hms.video.polls.network.PollResultsDisplay.questions"]},{"name":"val reader: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.reader","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/reader.html","searchKeys":["reader","val reader: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.reader"]},{"name":"val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.realTimeControls","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/real-time-controls.html","searchKeys":["realTimeControls","val realTimeControls: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.RealTimeControls","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.realTimeControls"]},{"name":"val reason: QualityLimitationReason","description":"live.hms.video.connection.degredation.QualityLimitationReasons.reason","location":"lib/live.hms.video.connection.degredation/-quality-limitation-reasons/reason.html","searchKeys":["reason","val reason: QualityLimitationReason","live.hms.video.connection.degredation.QualityLimitationReasons.reason"]},{"name":"val reason: String","description":"live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.reason","location":"lib/live.hms.video.factories.noisecancellation/-availability-status/-not-available/reason.html","searchKeys":["reason","val reason: String","live.hms.video.factories.noisecancellation.AvailabilityStatus.NotAvailable.reason"]},{"name":"val reason: String","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.reason","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/reason.html","searchKeys":["reason","val reason: String","live.hms.video.sdk.models.HMSRemovedFromRoom.reason"]},{"name":"val recipient: HMSMessageRecipient","description":"live.hms.video.sdk.models.HMSMessage.recipient","location":"lib/live.hms.video.sdk.models/-h-m-s-message/recipient.html","searchKeys":["recipient","val recipient: HMSMessageRecipient","live.hms.video.sdk.models.HMSMessage.recipient"]},{"name":"val record: Boolean","description":"live.hms.video.sdk.models.HMSRecordingConfig.record","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/record.html","searchKeys":["record","val record: Boolean","live.hms.video.sdk.models.HMSRecordingConfig.record"]},{"name":"val recoverGracePeriodSeconds: Long","description":"live.hms.video.sdk.models.role.SubscribeDegradationParams.recoverGracePeriodSeconds","location":"lib/live.hms.video.sdk.models.role/-subscribe-degradation-params/recover-grace-period-seconds.html","searchKeys":["recoverGracePeriodSeconds","val recoverGracePeriodSeconds: Long","live.hms.video.sdk.models.role.SubscribeDegradationParams.recoverGracePeriodSeconds"]},{"name":"val relativePacketArrivalDelay: Double?","description":"live.hms.video.connection.degredation.Audio.relativePacketArrivalDelay","location":"lib/live.hms.video.connection.degredation/-audio/relative-packet-arrival-delay.html","searchKeys":["relativePacketArrivalDelay","val relativePacketArrivalDelay: Double?","live.hms.video.connection.degredation.Audio.relativePacketArrivalDelay"]},{"name":"val removeFromStageLabel: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.removeFromStageLabel","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/remove-from-stage-label.html","searchKeys":["removeFromStageLabel","val removeFromStageLabel: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.removeFromStageLabel"]},{"name":"val removeOthers: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.removeOthers","location":"lib/live.hms.video.sdk.models.role/-permissions-params/remove-others.html","searchKeys":["removeOthers","val removeOthers: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.removeOthers"]},{"name":"val removedSamplesForAcceleration: BigInteger?","description":"live.hms.video.connection.degredation.Audio.removedSamplesForAcceleration","location":"lib/live.hms.video.connection.degredation/-audio/removed-samples-for-acceleration.html","searchKeys":["removedSamplesForAcceleration","val removedSamplesForAcceleration: BigInteger?","live.hms.video.connection.degredation.Audio.removedSamplesForAcceleration"]},{"name":"val requestedBy: HMSPeer?","description":"live.hms.video.sdk.models.HMSRoleChangeRequest.requestedBy","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/requested-by.html","searchKeys":["requestedBy","val requestedBy: HMSPeer?","live.hms.video.sdk.models.HMSRoleChangeRequest.requestedBy"]},{"name":"val requestedBy: HMSPeer?","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.requestedBy","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/requested-by.html","searchKeys":["requestedBy","val requestedBy: HMSPeer?","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.requestedBy"]},{"name":"val resolution: HMSRtmpVideoResolution? = null","description":"live.hms.video.sdk.models.HMSRecordingConfig.resolution","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/resolution.html","searchKeys":["resolution","val resolution: HMSRtmpVideoResolution? = null","live.hms.video.sdk.models.HMSRecordingConfig.resolution"]},{"name":"val resolution: HMSVideoResolution","description":"live.hms.video.media.settings.HMSSimulcastLayerDefinition.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-simulcast-layer-definition/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution","live.hms.video.media.settings.HMSSimulcastLayerDefinition.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.resolution","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.resolution","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.stats.HMSLocalVideoStats.resolution"]},{"name":"val resolution: HMSVideoResolution?","description":"live.hms.video.connection.stats.HMSRemoteVideoStats.resolution","location":"lib/live.hms.video.connection.stats/-h-m-s-remote-video-stats/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution?","live.hms.video.connection.stats.HMSRemoteVideoStats.resolution"]},{"name":"val resolution: Size","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.resolution","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/resolution.html","searchKeys":["resolution","val resolution: Size","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.resolution"]},{"name":"val respondedCorrectlyPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedCorrectlyPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/responded-correctly-peers-count.html","searchKeys":["respondedCorrectlyPeersCount","val respondedCorrectlyPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedCorrectlyPeersCount"]},{"name":"val respondedPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/responded-peers-count.html","searchKeys":["respondedPeersCount","val respondedPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.respondedPeersCount"]},{"name":"val response: HMSPollQuestionResponse","description":"live.hms.video.polls.models.network.SingleResponse.response","location":"lib/live.hms.video.polls.models.network/-single-response/response.html","searchKeys":["response","val response: HMSPollQuestionResponse","live.hms.video.polls.models.network.SingleResponse.response"]},{"name":"val responseId: String","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.responseId","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/response-id.html","searchKeys":["responseId","val responseId: String","live.hms.video.polls.models.network.HMSPollQuestionResponse.responseId"]},{"name":"val responses: List","description":"live.hms.video.polls.network.PollGetResponsesReply.responses","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/responses.html","searchKeys":["responses","val responses: List","live.hms.video.polls.network.PollGetResponsesReply.responses"]},{"name":"val responses: List? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.responses","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/responses.html","searchKeys":["responses","val responses: List? = null","live.hms.video.polls.models.HmsPollCreationParams.responses"]},{"name":"val result: List","description":"live.hms.video.polls.models.answer.PollAnswerResponse.result","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/result.html","searchKeys":["result","val result: List","live.hms.video.polls.models.answer.PollAnswerResponse.result"]},{"name":"val result: Result?","description":"live.hms.video.sdk.models.TranscriptionStartResponse.result","location":"lib/live.hms.video.sdk.models/-transcription-start-response/result.html","searchKeys":["result","val result: Result?","live.hms.video.sdk.models.TranscriptionStartResponse.result"]},{"name":"val result: Result?","description":"live.hms.video.sdk.models.TranscriptionStopResponse.result","location":"lib/live.hms.video.sdk.models/-transcription-stop-response/result.html","searchKeys":["result","val result: Result?","live.hms.video.sdk.models.TranscriptionStopResponse.result"]},{"name":"val rid: String?","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.rid","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.connection.stats.clientside.model.VideoAnalytics.rid"]},{"name":"val rid: String?","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.rid","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.rid"]},{"name":"val rid: String?","description":"live.hms.video.sdk.models.role.LayerParams.rid","location":"lib/live.hms.video.sdk.models.role/-layer-params/rid.html","searchKeys":["rid","val rid: String?","live.hms.video.sdk.models.role.LayerParams.rid"]},{"name":"val role: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.role","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/role.html","searchKeys":["role","val role: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.role"]},{"name":"val roleId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.roleId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/role-id.html","searchKeys":["roleId","val roleId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.roleId"]},{"name":"val rolesThatCanViewResponses: List","description":"live.hms.video.polls.models.HmsPoll.rolesThatCanViewResponses","location":"lib/live.hms.video.polls.models/-hms-poll/roles-that-can-view-responses.html","searchKeys":["rolesThatCanViewResponses","val rolesThatCanViewResponses: List","live.hms.video.polls.models.HmsPoll.rolesThatCanViewResponses"]},{"name":"val rolesThatCanViewResponses: List?","description":"live.hms.video.polls.HMSPollBuilder.rolesThatCanViewResponses","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/roles-that-can-view-responses.html","searchKeys":["rolesThatCanViewResponses","val rolesThatCanViewResponses: List?","live.hms.video.polls.HMSPollBuilder.rolesThatCanViewResponses"]},{"name":"val rolesThatCanVote: List","description":"live.hms.video.polls.models.HmsPoll.rolesThatCanVote","location":"lib/live.hms.video.polls.models/-hms-poll/roles-that-can-vote.html","searchKeys":["rolesThatCanVote","val rolesThatCanVote: List","live.hms.video.polls.models.HmsPoll.rolesThatCanVote"]},{"name":"val rolesThatCanVote: List?","description":"live.hms.video.polls.HMSPollBuilder.rolesThatCanVote","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/roles-that-can-vote.html","searchKeys":["rolesThatCanVote","val rolesThatCanVote: List?","live.hms.video.polls.HMSPollBuilder.rolesThatCanVote"]},{"name":"val rolesWhiteList: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.rolesWhiteList","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-chat/roles-white-list.html","searchKeys":["rolesWhiteList","val rolesWhiteList: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.Chat.rolesWhiteList"]},{"name":"val roomCode: String","description":"live.hms.video.signal.init.TokenRequest.roomCode","location":"lib/live.hms.video.signal.init/-token-request/room-code.html","searchKeys":["roomCode","val roomCode: String","live.hms.video.signal.init.TokenRequest.roomCode"]},{"name":"val roomWasEnded: Boolean","description":"live.hms.video.sdk.models.HMSRemovedFromRoom.roomWasEnded","location":"lib/live.hms.video.sdk.models/-h-m-s-removed-from-room/room-was-ended.html","searchKeys":["roomWasEnded","val roomWasEnded: Boolean","live.hms.video.sdk.models.HMSRemovedFromRoom.roomWasEnded"]},{"name":"val roundTripTime: Double","description":"live.hms.video.connection.stats.HMSRTCStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double","live.hms.video.connection.stats.HMSRTCStats.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.roundTripTime","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-audio/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalAudio.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.roundTripTime","location":"lib/live.hms.video.connection.degredation/-track/-local-track/-local-video/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.degredation.Track.LocalTrack.LocalVideo.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.stats.HMSLocalAudioStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-local-audio-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.stats.HMSLocalAudioStats.roundTripTime"]},{"name":"val roundTripTime: Double?","description":"live.hms.video.connection.stats.HMSLocalVideoStats.roundTripTime","location":"lib/live.hms.video.connection.stats/-h-m-s-local-video-stats/round-trip-time.html","searchKeys":["roundTripTime","val roundTripTime: Double?","live.hms.video.connection.stats.HMSLocalVideoStats.roundTripTime"]},{"name":"val roundTripTimeMs: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.roundTripTimeMs","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/round-trip-time-ms.html","searchKeys":["roundTripTimeMs","val roundTripTimeMs: MutableList","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.roundTripTimeMs"]},{"name":"val rtmpStreaming: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.rtmpStreaming","location":"lib/live.hms.video.sdk.models.role/-permissions-params/rtmp-streaming.html","searchKeys":["rtmpStreaming","val rtmpStreaming: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.rtmpStreaming"]},{"name":"val rtmpUrls: List","description":"live.hms.video.sdk.models.HMSRecordingConfig.rtmpUrls","location":"lib/live.hms.video.sdk.models/-h-m-s-recording-config/rtmp-urls.html","searchKeys":["rtmpUrls","val rtmpUrls: List","live.hms.video.sdk.models.HMSRecordingConfig.rtmpUrls"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSBrowserRecordingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSHLSStreamingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSHLSStreamingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSRtmpStreamingState.running"]},{"name":"val running: Boolean","description":"live.hms.video.sdk.models.HMSServerRecordingState.running","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/running.html","searchKeys":["running","val running: Boolean","live.hms.video.sdk.models.HMSServerRecordingState.running"]},{"name":"val running: Boolean?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.running","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/running.html","searchKeys":["running","val running: Boolean?","live.hms.video.sdk.models.HmsHlsRecordingState.running"]},{"name":"val scaleResolutionDownBy: Float?","description":"live.hms.video.sdk.models.role.LayerParams.scaleResolutionDownBy","location":"lib/live.hms.video.sdk.models.role/-layer-params/scale-resolution-down-by.html","searchKeys":["scaleResolutionDownBy","val scaleResolutionDownBy: Float?","live.hms.video.sdk.models.role.LayerParams.scaleResolutionDownBy"]},{"name":"val score: Float?","description":"live.hms.video.polls.network.LeaderboardQuestion.score","location":"lib/live.hms.video.polls.network/-leaderboard-question/score.html","searchKeys":["score","val score: Float?","live.hms.video.polls.network.LeaderboardQuestion.score"]},{"name":"val score: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.score","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/score.html","searchKeys":["score","val score: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.score"]},{"name":"val scoreMap: SortedMap","description":"live.hms.video.signal.init.NetworkHealth.scoreMap","location":"lib/live.hms.video.signal.init/-network-health/score-map.html","searchKeys":["scoreMap","val scoreMap: SortedMap","live.hms.video.signal.init.NetworkHealth.scoreMap"]},{"name":"val screen: VideoParams?","description":"live.hms.video.sdk.models.role.PublishParams.screen","location":"lib/live.hms.video.sdk.models.role/-publish-params/screen.html","searchKeys":["screen","val screen: VideoParams?","live.hms.video.sdk.models.role.PublishParams.screen"]},{"name":"val screen: VideoSimulcastLayersParams?","description":"live.hms.video.sdk.models.role.Simulcast.screen","location":"lib/live.hms.video.sdk.models.role/-simulcast/screen.html","searchKeys":["screen","val screen: VideoSimulcastLayersParams?","live.hms.video.sdk.models.role.Simulcast.screen"]},{"name":"val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.screens","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/screens.html","searchKeys":["screens","val screens: HMSRoomLayout.HMSRoomLayoutData.Screens?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.screens"]},{"name":"val secondaryBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-bright.html","searchKeys":["secondaryBright","val secondaryBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryBright"]},{"name":"val secondaryDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-default.html","searchKeys":["secondaryDefault","val secondaryDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDefault"]},{"name":"val secondaryDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-dim.html","searchKeys":["secondaryDim","val secondaryDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDim"]},{"name":"val secondaryDisabled: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDisabled","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/secondary-disabled.html","searchKeys":["secondaryDisabled","val secondaryDisabled: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.secondaryDisabled"]},{"name":"val selectedOption: Int = 0","description":"live.hms.video.polls.models.answer.HmsPollAnswer.selectedOption","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/selected-option.html","searchKeys":["selectedOption","val selectedOption: Int = 0","live.hms.video.polls.models.answer.HmsPollAnswer.selectedOption"]},{"name":"val selectedOption: Int?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOption","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/selected-option.html","searchKeys":["selectedOption","val selectedOption: Int?","live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOption"]},{"name":"val selectedOptions: List?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOptions","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/selected-options.html","searchKeys":["selectedOptions","val selectedOptions: List?","live.hms.video.polls.models.network.HMSPollQuestionResponse.selectedOptions"]},{"name":"val selectedOptions: List? = null","description":"live.hms.video.polls.models.answer.HmsPollAnswer.selectedOptions","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/selected-options.html","searchKeys":["selectedOptions","val selectedOptions: List? = null","live.hms.video.polls.models.answer.HmsPollAnswer.selectedOptions"]},{"name":"val sequenceNumber: Int","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.sequenceNumber","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/sequence-number.html","searchKeys":["sequenceNumber","val sequenceNumber: Int","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.sequenceNumber"]},{"name":"val serverName: String","description":"live.hms.video.events.AgentType.serverName","location":"lib/live.hms.video.events/-agent-type/server-name.html","searchKeys":["serverName","val serverName: String","live.hms.video.events.AgentType.serverName"]},{"name":"val serverName: String","description":"live.hms.video.sdk.featureflags.Features.serverName","location":"lib/live.hms.video.sdk.featureflags/-features/server-name.html","searchKeys":["serverName","val serverName: String","live.hms.video.sdk.featureflags.Features.serverName"]},{"name":"val service: HMSScreenCaptureService","description":"live.hms.video.services.HMSScreenCaptureService.LocalBinder.service","location":"lib/live.hms.video.services/-h-m-s-screen-capture-service/-local-binder/service.html","searchKeys":["service","val service: HMSScreenCaptureService","live.hms.video.services.HMSScreenCaptureService.LocalBinder.service"]},{"name":"val sfu: Sfu?","description":"live.hms.video.sdk.peerlist.models.Recording.sfu","location":"lib/live.hms.video.sdk.peerlist.models/-recording/sfu.html","searchKeys":["sfu","val sfu: Sfu?","live.hms.video.sdk.peerlist.models.Recording.sfu"]},{"name":"val shouldSkipPIIEvents: Boolean","description":"live.hms.video.sdk.HMSSDK.shouldSkipPIIEvents","location":"lib/live.hms.video.sdk/-h-m-s-s-d-k/should-skip-p-i-i-events.html","searchKeys":["shouldSkipPIIEvents","val shouldSkipPIIEvents: Boolean","live.hms.video.sdk.HMSSDK.shouldSkipPIIEvents"]},{"name":"val signallingReport: SignallingReport","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.signallingReport","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/signalling-report.html","searchKeys":["signallingReport","val signallingReport: SignallingReport","live.hms.video.diagnostics.models.ConnectivityCheckResult.signallingReport"]},{"name":"val silentConcealedSamples: BigInteger?","description":"live.hms.video.connection.degredation.Audio.silentConcealedSamples","location":"lib/live.hms.video.connection.degredation/-audio/silent-concealed-samples.html","searchKeys":["silentConcealedSamples","val silentConcealedSamples: BigInteger?","live.hms.video.connection.degredation.Audio.silentConcealedSamples"]},{"name":"val simulcast: Boolean","description":"live.hms.video.media.settings.HMSTrackSettings.simulcast","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/simulcast.html","searchKeys":["simulcast","val simulcast: Boolean","live.hms.video.media.settings.HMSTrackSettings.simulcast"]},{"name":"val simulcast: Simulcast?","description":"live.hms.video.sdk.models.role.PublishParams.simulcast","location":"lib/live.hms.video.sdk.models.role/-publish-params/simulcast.html","searchKeys":["simulcast","val simulcast: Simulcast?","live.hms.video.sdk.models.role.PublishParams.simulcast"]},{"name":"val singleFilePerLayer: Boolean","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.singleFilePerLayer","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/single-file-per-layer.html","searchKeys":["singleFilePerLayer","val singleFilePerLayer: Boolean","live.hms.video.sdk.models.HMSHlsRecordingConfig.singleFilePerLayer"]},{"name":"val skipPreview: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.skipPreview","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/skip-preview.html","searchKeys":["skipPreview","val skipPreview: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.skipPreview"]},{"name":"val skipPreviewForRoleChange: Boolean?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.skipPreviewForRoleChange","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-on-stage-exp/skip-preview-for-role-change.html","searchKeys":["skipPreviewForRoleChange","val skipPreviewForRoleChange: Boolean?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.OnStageExp.skipPreviewForRoleChange"]},{"name":"val skipped: Boolean","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.skipped","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/skipped.html","searchKeys":["skipped","val skipped: Boolean","live.hms.video.polls.models.network.HMSPollQuestionResponse.skipped"]},{"name":"val skipped: Boolean = false","description":"live.hms.video.polls.models.answer.HmsPollAnswer.skipped","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/skipped.html","searchKeys":["skipped","val skipped: Boolean = false","live.hms.video.polls.models.answer.HmsPollAnswer.skipped"]},{"name":"val skipped: Long","description":"live.hms.video.polls.models.PollStatsQuestions.skipped","location":"lib/live.hms.video.polls.models/-poll-stats-questions/skipped.html","searchKeys":["skipped","val skipped: Long","live.hms.video.polls.models.PollStatsQuestions.skipped"]},{"name":"val skipped: Long","description":"live.hms.video.polls.network.PollResultsItems.skipped","location":"lib/live.hms.video.polls.network/-poll-results-items/skipped.html","searchKeys":["skipped","val skipped: Long","live.hms.video.polls.network.PollResultsItems.skipped"]},{"name":"val source: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.source","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/source.html","searchKeys":["source","val source: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.source"]},{"name":"val source: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.source","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/source.html","searchKeys":["source","val source: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.source"]},{"name":"val ssrc: Long?","description":"live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.ssrc","location":"lib/live.hms.video.connection.degredation/-connection-info/-packet-loss-tracks/ssrc.html","searchKeys":["ssrc","val ssrc: Long?","live.hms.video.connection.degredation.ConnectionInfo.PacketLossTracks.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.ssrc"]},{"name":"val ssrc: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.ssrc","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/ssrc.html","searchKeys":["ssrc","val ssrc: String","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.ssrc"]},{"name":"val start: Int","description":"live.hms.video.sdk.transcripts.HmsTranscript.start","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/start.html","searchKeys":["start","val start: Int","live.hms.video.sdk.transcripts.HmsTranscript.start"]},{"name":"val startedAt: Long","description":"live.hms.video.polls.models.HmsPoll.startedAt","location":"lib/live.hms.video.polls.models/-hms-poll/started-at.html","searchKeys":["startedAt","val startedAt: Long","live.hms.video.polls.models.HmsPoll.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSBrowserRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSHLSVariant.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSHLSVariant.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSRtmpStreamingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HMSServerRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HMSServerRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.models.HmsHlsRecordingState.startedAt","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.models.HmsHlsRecordingState.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Hls.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-hls/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Hls.startedAt"]},{"name":"val startedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.startedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/started-at.html","searchKeys":["startedAt","val startedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.startedAt"]},{"name":"val startedBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.startedBy","location":"lib/live.hms.video.polls.models/-hms-poll/started-by.html","searchKeys":["startedBy","val startedBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.startedBy"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Browser.state","location":"lib/live.hms.video.sdk.peerlist.models/-browser/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Browser.state"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Hls.state","location":"lib/live.hms.video.sdk.peerlist.models/-hls/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Hls.state"]},{"name":"val state: BeamRecordingStates?","description":"live.hms.video.sdk.peerlist.models.Sfu.state","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/state.html","searchKeys":["state","val state: BeamRecordingStates?","live.hms.video.sdk.peerlist.models.Sfu.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HMSBrowserRecordingState.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HMSServerRecordingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-server-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HMSServerRecordingState.state"]},{"name":"val state: HMSRecordingState","description":"live.hms.video.sdk.models.HmsHlsRecordingState.state","location":"lib/live.hms.video.sdk.models/-hms-hls-recording-state/state.html","searchKeys":["state","val state: HMSRecordingState","live.hms.video.sdk.models.HmsHlsRecordingState.state"]},{"name":"val state: HMSStreamingState","description":"live.hms.video.sdk.models.HMSHLSStreamingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/state.html","searchKeys":["state","val state: HMSStreamingState","live.hms.video.sdk.models.HMSHLSStreamingState.state"]},{"name":"val state: HmsPollState","description":"live.hms.video.polls.models.HmsPoll.state","location":"lib/live.hms.video.polls.models/-hms-poll/state.html","searchKeys":["state","val state: HmsPollState","live.hms.video.polls.models.HmsPoll.state"]},{"name":"val state: State","description":"live.hms.video.whiteboard.HMSWhiteboard.state","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/state.html","searchKeys":["state","val state: State","live.hms.video.whiteboard.HMSWhiteboard.state"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.models.HMSBrowserRecordingState.stoppedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-browser-recording-state/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.models.HMSBrowserRecordingState.stoppedAt"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.stoppedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.models.HMSRtmpStreamingState.stoppedAt"]},{"name":"val stoppedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Browser.stoppedAt","location":"lib/live.hms.video.sdk.peerlist.models/-browser/stopped-at.html","searchKeys":["stoppedAt","val stoppedAt: Long?","live.hms.video.sdk.peerlist.models.Browser.stoppedAt"]},{"name":"val stoppedBy: HMSPeer?","description":"live.hms.video.polls.models.HmsPoll.stoppedBy","location":"lib/live.hms.video.polls.models/-hms-poll/stopped-by.html","searchKeys":["stoppedBy","val stoppedBy: HMSPeer?","live.hms.video.polls.models.HmsPoll.stoppedBy"]},{"name":"val subTitle: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.subTitle","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/sub-title.html","searchKeys":["subTitle","val subTitle: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.subTitle"]},{"name":"val subscribeDegradationParam: SubscribeDegradationParams?","description":"live.hms.video.sdk.models.role.SubscribeParams.subscribeDegradationParam","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-degradation-param.html","searchKeys":["subscribeDegradationParam","val subscribeDegradationParam: SubscribeDegradationParams?","live.hms.video.sdk.models.role.SubscribeParams.subscribeDegradationParam"]},{"name":"val subscribeIceCandidatesGathered: List","description":"live.hms.video.diagnostics.models.MediaServerReport.subscribeIceCandidatesGathered","location":"lib/live.hms.video.diagnostics.models/-media-server-report/subscribe-ice-candidates-gathered.html","searchKeys":["subscribeIceCandidatesGathered","val subscribeIceCandidatesGathered: List","live.hms.video.diagnostics.models.MediaServerReport.subscribeIceCandidatesGathered"]},{"name":"val subscribeParams: SubscribeParams?","description":"live.hms.video.sdk.models.role.HMSRole.subscribeParams","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/subscribe-params.html","searchKeys":["subscribeParams","val subscribeParams: SubscribeParams?","live.hms.video.sdk.models.role.HMSRole.subscribeParams"]},{"name":"val subscribeStats: Stats?","description":"live.hms.video.signal.init.ServerConfiguration.subscribeStats","location":"lib/live.hms.video.signal.init/-server-configuration/subscribe-stats.html","searchKeys":["subscribeStats","val subscribeStats: Stats?","live.hms.video.signal.init.ServerConfiguration.subscribeStats"]},{"name":"val subscribeTo: ArrayList?","description":"live.hms.video.sdk.models.role.SubscribeParams.subscribeTo","location":"lib/live.hms.video.sdk.models.role/-subscribe-params/subscribe-to.html","searchKeys":["subscribeTo","val subscribeTo: ArrayList?","live.hms.video.sdk.models.role.SubscribeParams.subscribeTo"]},{"name":"val suggestedRole: HMSRole","description":"live.hms.video.sdk.models.HMSRoleChangeRequest.suggestedRole","location":"lib/live.hms.video.sdk.models/-h-m-s-role-change-request/suggested-role.html","searchKeys":["suggestedRole","val suggestedRole: HMSRole","live.hms.video.sdk.models.HMSRoleChangeRequest.suggestedRole"]},{"name":"val summary: HMSPollLeaderboardSummary?","description":"live.hms.video.polls.network.PollLeaderboardResponse.summary","location":"lib/live.hms.video.polls.network/-poll-leaderboard-response/summary.html","searchKeys":["summary","val summary: HMSPollLeaderboardSummary?","live.hms.video.polls.network.PollLeaderboardResponse.summary"]},{"name":"val surfaceBright: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBright","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-bright.html","searchKeys":["surfaceBright","val surfaceBright: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBright"]},{"name":"val surfaceBrighter: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBrighter","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-brighter.html","searchKeys":["surfaceBrighter","val surfaceBrighter: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceBrighter"]},{"name":"val surfaceDefault: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDefault","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-default.html","searchKeys":["surfaceDefault","val surfaceDefault: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDefault"]},{"name":"val surfaceDim: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDim","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-h-m-s-room-theme/-h-m-s-color-palette/surface-dim.html","searchKeys":["surfaceDim","val surfaceDim: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.HMSRoomTheme.HMSColorPalette.surfaceDim"]},{"name":"val templateId: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.templateId","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/template-id.html","searchKeys":["templateId","val templateId: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.templateId"]},{"name":"val text: String","description":"live.hms.video.polls.models.answer.HMSPollQuestionAnswer.text","location":"lib/live.hms.video.polls.models.answer/-h-m-s-poll-question-answer/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.answer.HMSPollQuestionAnswer.text"]},{"name":"val text: String","description":"live.hms.video.polls.models.question.HMSPollQuestion.text","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.question.HMSPollQuestion.text"]},{"name":"val text: String","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.text","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/text.html","searchKeys":["text","val text: String","live.hms.video.polls.models.question.HmsPollQuestionCreation.text"]},{"name":"val text: String?","description":"live.hms.video.polls.models.network.HMSPollQuestionResponse.text","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-question-response/text.html","searchKeys":["text","val text: String?","live.hms.video.polls.models.network.HMSPollQuestionResponse.text"]},{"name":"val text: String?","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.text","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/text.html","searchKeys":["text","val text: String?","live.hms.video.polls.models.question.HMSPollQuestionOption.text"]},{"name":"val themes: List?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.themes","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/themes.html","searchKeys":["themes","val themes: List?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.themes"]},{"name":"val timeout: Long","description":"live.hms.video.signal.init.NetworkHealth.timeout","location":"lib/live.hms.video.signal.init/-network-health/timeout.html","searchKeys":["timeout","val timeout: Long","live.hms.video.signal.init.NetworkHealth.timeout"]},{"name":"val timestamp: Long","description":"live.hms.video.sdk.models.HMSMessageSendResponse.timestamp","location":"lib/live.hms.video.sdk.models/-h-m-s-message-send-response/timestamp.html","searchKeys":["timestamp","val timestamp: Long","live.hms.video.sdk.models.HMSMessageSendResponse.timestamp"]},{"name":"val timestampUs: Double?","description":"live.hms.video.connection.degredation.Peer.timestampUs","location":"lib/live.hms.video.connection.degredation/-peer/timestamp-us.html","searchKeys":["timestampUs","val timestampUs: Double?","live.hms.video.connection.degredation.Peer.timestampUs"]},{"name":"val title: String","description":"live.hms.video.polls.HMSPollBuilder.title","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/title.html","searchKeys":["title","val title: String","live.hms.video.polls.HMSPollBuilder.title"]},{"name":"val title: String","description":"live.hms.video.polls.models.HmsPoll.title","location":"lib/live.hms.video.polls.models/-hms-poll/title.html","searchKeys":["title","val title: String","live.hms.video.polls.models.HmsPoll.title"]},{"name":"val title: String","description":"live.hms.video.polls.models.HmsPollCreationParams.title","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/title.html","searchKeys":["title","val title: String","live.hms.video.polls.models.HmsPollCreationParams.title"]},{"name":"val title: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.title","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-l-s-live-streaming-header/title.html","searchKeys":["title","val title: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HLSLiveStreamingHeader.title"]},{"name":"val title: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.title","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-preview-header/title.html","searchKeys":["title","val title: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.PreviewHeader.title"]},{"name":"val title: String? = null","description":"live.hms.video.whiteboard.HMSWhiteboard.title","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/title.html","searchKeys":["title","val title: String? = null","live.hms.video.whiteboard.HMSWhiteboard.title"]},{"name":"val token: String","description":"live.hms.video.signal.init.ShortCodeInput.token","location":"lib/live.hms.video.signal.init/-short-code-input/token.html","searchKeys":["token","val token: String","live.hms.video.signal.init.ShortCodeInput.token"]},{"name":"val token: String?","description":"live.hms.video.signal.init.TokenResult.token","location":"lib/live.hms.video.signal.init/-token-result/token.html","searchKeys":["token","val token: String?","live.hms.video.signal.init.TokenResult.token"]},{"name":"val token: String?","description":"live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.token","location":"lib/live.hms.video.whiteboard.network/-h-m-s-get-white-board-response/token.html","searchKeys":["token","val token: String?","live.hms.video.whiteboard.network.HMSGetWhiteBoardResponse.token"]},{"name":"val total: Long","description":"live.hms.video.polls.network.PollResultsItems.total","location":"lib/live.hms.video.polls.network/-poll-results-items/total.html","searchKeys":["total","val total: Long","live.hms.video.polls.network.PollResultsItems.total"]},{"name":"val totalAudioEnergy: Double?","description":"live.hms.video.connection.degredation.Audio.totalAudioEnergy","location":"lib/live.hms.video.connection.degredation/-audio/total-audio-energy.html","searchKeys":["totalAudioEnergy","val totalAudioEnergy: Double?","live.hms.video.connection.degredation.Audio.totalAudioEnergy"]},{"name":"val totalDecodeTime: Double?","description":"live.hms.video.connection.degredation.Video.totalDecodeTime","location":"lib/live.hms.video.connection.degredation/-video/total-decode-time.html","searchKeys":["totalDecodeTime","val totalDecodeTime: Double?","live.hms.video.connection.degredation.Video.totalDecodeTime"]},{"name":"val totalDistinctUsers: Long","description":"live.hms.video.polls.network.PollResultsResponse.totalDistinctUsers","location":"lib/live.hms.video.polls.network/-poll-results-response/total-distinct-users.html","searchKeys":["totalDistinctUsers","val totalDistinctUsers: Long","live.hms.video.polls.network.PollResultsResponse.totalDistinctUsers"]},{"name":"val totalDistinctUsers: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.totalDistinctUsers","location":"lib/live.hms.video.polls.network/-poll-results-display/total-distinct-users.html","searchKeys":["totalDistinctUsers","val totalDistinctUsers: Long? = null","live.hms.video.polls.network.PollResultsDisplay.totalDistinctUsers"]},{"name":"val totalFramesDuration: Double?","description":"live.hms.video.connection.degredation.Video.totalFramesDuration","location":"lib/live.hms.video.connection.degredation/-video/total-frames-duration.html","searchKeys":["totalFramesDuration","val totalFramesDuration: Double?","live.hms.video.connection.degredation.Video.totalFramesDuration"]},{"name":"val totalFreezesDuration: Double?","description":"live.hms.video.connection.degredation.Video.totalFreezesDuration","location":"lib/live.hms.video.connection.degredation/-video/total-freezes-duration.html","searchKeys":["totalFreezesDuration","val totalFreezesDuration: Double?","live.hms.video.connection.degredation.Video.totalFreezesDuration"]},{"name":"val totalInterFrameDelay: Double?","description":"live.hms.video.connection.degredation.Video.totalInterFrameDelay","location":"lib/live.hms.video.connection.degredation/-video/total-inter-frame-delay.html","searchKeys":["totalInterFrameDelay","val totalInterFrameDelay: Double?","live.hms.video.connection.degredation.Video.totalInterFrameDelay"]},{"name":"val totalInterruptionDuration: Double?","description":"live.hms.video.connection.degredation.Audio.totalInterruptionDuration","location":"lib/live.hms.video.connection.degredation/-audio/total-interruption-duration.html","searchKeys":["totalInterruptionDuration","val totalInterruptionDuration: Double?","live.hms.video.connection.degredation.Audio.totalInterruptionDuration"]},{"name":"val totalPacketSendDelay: Double","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketSendDelay","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total-packet-send-delay.html","searchKeys":["totalPacketSendDelay","val totalPacketSendDelay: Double","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.totalPacketSendDelay"]},{"name":"val totalPackets: Long","description":"live.hms.video.connection.degredation.StatsBundle.totalPackets","location":"lib/live.hms.video.connection.degredation/-stats-bundle/total-packets.html","searchKeys":["totalPackets","val totalPackets: Long","live.hms.video.connection.degredation.StatsBundle.totalPackets"]},{"name":"val totalPeersCount: Int?","description":"live.hms.video.polls.network.HMSPollLeaderboardSummary.totalPeersCount","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-summary/total-peers-count.html","searchKeys":["totalPeersCount","val totalPeersCount: Int?","live.hms.video.polls.network.HMSPollLeaderboardSummary.totalPeersCount"]},{"name":"val totalQuestions: Int","description":"live.hms.video.polls.network.SetQuestionsResponse.totalQuestions","location":"lib/live.hms.video.polls.network/-set-questions-response/total-questions.html","searchKeys":["totalQuestions","val totalQuestions: Int","live.hms.video.polls.network.SetQuestionsResponse.totalQuestions"]},{"name":"val totalResponse: Long?","description":"live.hms.video.polls.network.LeaderboardQuestion.totalResponse","location":"lib/live.hms.video.polls.network/-leaderboard-question/total-response.html","searchKeys":["totalResponse","val totalResponse: Long?","live.hms.video.polls.network.LeaderboardQuestion.totalResponse"]},{"name":"val totalResponses: Long","description":"live.hms.video.polls.network.PollResultsResponse.totalResponses","location":"lib/live.hms.video.polls.network/-poll-results-response/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long","live.hms.video.polls.network.PollResultsResponse.totalResponses"]},{"name":"val totalResponses: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardEntry.totalResponses","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-entry/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long?","live.hms.video.polls.network.HMSPollLeaderboardEntry.totalResponses"]},{"name":"val totalResponses: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.totalResponses","location":"lib/live.hms.video.polls.network/-poll-results-display/total-responses.html","searchKeys":["totalResponses","val totalResponses: Long? = null","live.hms.video.polls.network.PollResultsDisplay.totalResponses"]},{"name":"val totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.Peer.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-peer/total-round-trip-time.html","searchKeys":["totalRoundTripTime","val totalRoundTripTime: Double?","live.hms.video.connection.degredation.Peer.totalRoundTripTime"]},{"name":"val totalSamplesDuration: Double?","description":"live.hms.video.connection.degredation.Audio.totalSamplesDuration","location":"lib/live.hms.video.connection.degredation/-audio/total-samples-duration.html","searchKeys":["totalSamplesDuration","val totalSamplesDuration: Double?","live.hms.video.connection.degredation.Audio.totalSamplesDuration"]},{"name":"val totalSamplesReceived: BigInteger?","description":"live.hms.video.connection.degredation.Audio.totalSamplesReceived","location":"lib/live.hms.video.connection.degredation/-audio/total-samples-received.html","searchKeys":["totalSamplesReceived","val totalSamplesReceived: BigInteger?","live.hms.video.connection.degredation.Audio.totalSamplesReceived"]},{"name":"val totalSquaredInterFrameDelay: Double?","description":"live.hms.video.connection.degredation.Video.totalSquaredInterFrameDelay","location":"lib/live.hms.video.connection.degredation/-video/total-squared-inter-frame-delay.html","searchKeys":["totalSquaredInterFrameDelay","val totalSquaredInterFrameDelay: Double?","live.hms.video.connection.degredation.Video.totalSquaredInterFrameDelay"]},{"name":"val totalUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.totalUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/total-users.html","searchKeys":["totalUsers","val totalUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.totalUsers"]},{"name":"val total_quality_limitation: QualityLimitation","description":"live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.total_quality_limitation","location":"lib/live.hms.video.connection.stats.clientside.model/-video-samples-publish/total_quality_limitation.html","searchKeys":["total_quality_limitation","val total_quality_limitation: QualityLimitation","live.hms.video.connection.stats.clientside.model.VideoSamplesPublish.total_quality_limitation"]},{"name":"val track: HMSTrack","description":"live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.track","location":"lib/live.hms.video.sdk.models.trackchangerequest/-h-m-s-change-track-state-request/track.html","searchKeys":["track","val track: HMSTrack","live.hms.video.sdk.models.trackchangerequest.HMSChangeTrackStateRequest.track"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.trackId","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayer.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayer.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayerAudio.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer-audio/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayerAudio.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.streams.models.PreferLayerResponseInfo.trackId","location":"lib/live.hms.video.media.streams.models/-prefer-layer-response-info/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.streams.models.PreferLayerResponseInfo.trackId"]},{"name":"val trackId: String","description":"live.hms.video.media.tracks.HMSTrack.trackId","location":"lib/live.hms.video.media.tracks/-h-m-s-track/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.media.tracks.HMSTrack.trackId"]},{"name":"val trackId: String","description":"live.hms.video.sdk.models.HMSSpeaker.trackId","location":"lib/live.hms.video.sdk.models/-h-m-s-speaker/track-id.html","searchKeys":["trackId","val trackId: String","live.hms.video.sdk.models.HMSSpeaker.trackId"]},{"name":"val tracks: ArrayList","description":"live.hms.video.media.streams.HMSMediaStream.tracks","location":"lib/live.hms.video.media.streams/-h-m-s-media-stream/tracks.html","searchKeys":["tracks","val tracks: ArrayList","live.hms.video.media.streams.HMSMediaStream.tracks"]},{"name":"val transcript: String","description":"live.hms.video.sdk.transcripts.HmsTranscript.transcript","location":"lib/live.hms.video.sdk.transcripts/-hms-transcript/transcript.html","searchKeys":["transcript","val transcript: String","live.hms.video.sdk.transcripts.HmsTranscript.transcript"]},{"name":"val transcriptions: List","description":"live.hms.video.sdk.models.HMSRoom.transcriptions","location":"lib/live.hms.video.sdk.models/-h-m-s-room/transcriptions.html","searchKeys":["transcriptions","val transcriptions: List","live.hms.video.sdk.models.HMSRoom.transcriptions"]},{"name":"val transcripts: List","description":"live.hms.video.sdk.transcripts.HmsTranscripts.transcripts","location":"lib/live.hms.video.sdk.transcripts/-hms-transcripts/transcripts.html","searchKeys":["transcripts","val transcripts: List","live.hms.video.sdk.transcripts.HmsTranscripts.transcripts"]},{"name":"val trim: Boolean = false","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.trim","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/trim.html","searchKeys":["trim","val trim: Boolean = false","live.hms.video.polls.models.question.HMSPollQuestionOption.trim"]},{"name":"val type: HMSAudioManager.AudioDevice","description":"live.hms.video.audio.HMSAudioDeviceInfo.type","location":"lib/live.hms.video.audio/-h-m-s-audio-device-info/type.html","searchKeys":["type","val type: HMSAudioManager.AudioDevice","live.hms.video.audio.HMSAudioDeviceInfo.type"]},{"name":"val type: HMSPeerType","description":"live.hms.video.sdk.models.HMSPeer.type","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/type.html","searchKeys":["type","val type: HMSPeerType","live.hms.video.sdk.models.HMSPeer.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.type","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.HMSPollQuestionBuilder.Builder.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.models.question.HMSPollQuestion.type","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.models.question.HMSPollQuestion.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.type","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.models.question.HmsPollQuestionCreation.type"]},{"name":"val type: HMSPollQuestionType","description":"live.hms.video.polls.network.PollResultsItems.type","location":"lib/live.hms.video.polls.network/-poll-results-items/type.html","searchKeys":["type","val type: HMSPollQuestionType","live.hms.video.polls.network.PollResultsItems.type"]},{"name":"val type: Int","description":"live.hms.video.media.capturers.camera.utils.YuvByteBuffer.type","location":"lib/live.hms.video.media.capturers.camera.utils/-yuv-byte-buffer/type.html","searchKeys":["type","val type: Int","live.hms.video.media.capturers.camera.utils.YuvByteBuffer.type"]},{"name":"val type: String","description":"live.hms.video.sdk.models.HMSMessage.type","location":"lib/live.hms.video.sdk.models/-h-m-s-message/type.html","searchKeys":["type","val type: String","live.hms.video.sdk.models.HMSMessage.type"]},{"name":"val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.typography","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/typography.html","searchKeys":["typography","val typography: HMSRoomLayout.HMSRoomLayoutData.TypoGraphy?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.typography"]},{"name":"val unmute: Boolean = false","description":"live.hms.video.sdk.models.role.PermissionsParams.unmute","location":"lib/live.hms.video.sdk.models.role/-permissions-params/unmute.html","searchKeys":["unmute","val unmute: Boolean = false","live.hms.video.sdk.models.role.PermissionsParams.unmute"]},{"name":"val update: Boolean = false","description":"live.hms.video.polls.models.answer.HmsPollAnswer.update","location":"lib/live.hms.video.polls.models.answer/-hms-poll-answer/update.html","searchKeys":["update","val update: Boolean = false","live.hms.video.polls.models.answer.HmsPollAnswer.update"]},{"name":"val updatedAt: Long?","description":"live.hms.video.sdk.models.HMSHLSVariant.updatedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-variant/updated-at.html","searchKeys":["updatedAt","val updatedAt: Long?","live.hms.video.sdk.models.HMSHLSVariant.updatedAt"]},{"name":"val updatedAt: Long?","description":"live.hms.video.sdk.peerlist.models.Sfu.updatedAt","location":"lib/live.hms.video.sdk.peerlist.models/-sfu/updated-at.html","searchKeys":["updatedAt","val updatedAt: Long?","live.hms.video.sdk.peerlist.models.Sfu.updatedAt"]},{"name":"val url: String","description":"live.hms.video.signal.init.NetworkHealth.url","location":"lib/live.hms.video.signal.init/-network-health/url.html","searchKeys":["url","val url: String","live.hms.video.signal.init.NetworkHealth.url"]},{"name":"val url: String","description":"live.hms.video.whiteboard.HMSWhiteboard.url","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard/url.html","searchKeys":["url","val url: String","live.hms.video.whiteboard.HMSWhiteboard.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-logo/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Logo.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/-h-m-s-background-media/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSBackgroundMedia.url"]},{"name":"val url: String?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.url","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/-h-m-s-background-media/url.html","searchKeys":["url","val url: String?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSBackgroundMedia.url"]},{"name":"val useHardwareAcousticEchoCanceler: Boolean?","description":"live.hms.video.media.settings.HMSAudioTrackSettings.useHardwareAcousticEchoCanceler","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/use-hardware-acoustic-echo-canceler.html","searchKeys":["useHardwareAcousticEchoCanceler","val useHardwareAcousticEchoCanceler: Boolean?","live.hms.video.media.settings.HMSAudioTrackSettings.useHardwareAcousticEchoCanceler"]},{"name":"val userId: String?","description":"live.hms.video.polls.HMSPollResponseBuilder.userId","location":"lib/live.hms.video.polls/-h-m-s-poll-response-builder/user-id.html","searchKeys":["userId","val userId: String?","live.hms.video.polls.HMSPollResponseBuilder.userId"]},{"name":"val userId: String?","description":"live.hms.video.signal.init.ShortCodeInput.userId","location":"lib/live.hms.video.signal.init/-short-code-input/user-id.html","searchKeys":["userId","val userId: String?","live.hms.video.signal.init.ShortCodeInput.userId"]},{"name":"val userId: String? = null","description":"live.hms.video.signal.init.TokenRequest.userId","location":"lib/live.hms.video.signal.init/-token-request/user-id.html","searchKeys":["userId","val userId: String? = null","live.hms.video.signal.init.TokenRequest.userId"]},{"name":"val userName: String","description":"live.hms.video.sdk.models.HMSConfig.userName","location":"lib/live.hms.video.sdk.models/-h-m-s-config/user-name.html","searchKeys":["userName","val userName: String","live.hms.video.sdk.models.HMSConfig.userName"]},{"name":"val userid: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.userid","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/userid.html","searchKeys":["userid","val userid: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.userid"]},{"name":"val username: String?","description":"live.hms.video.polls.models.network.HMSPollResponsePeerInfo.username","location":"lib/live.hms.video.polls.models.network/-h-m-s-poll-response-peer-info/username.html","searchKeys":["username","val username: String?","live.hms.video.polls.models.network.HMSPollResponsePeerInfo.username"]},{"name":"val variants: ArrayList?","description":"live.hms.video.sdk.models.HMSHLSStreamingState.variants","location":"lib/live.hms.video.sdk.models/-h-m-s-h-l-s-streaming-state/variants.html","searchKeys":["variants","val variants: ArrayList?","live.hms.video.sdk.models.HMSHLSStreamingState.variants"]},{"name":"val vb: VB?","description":"live.hms.video.signal.init.ServerConfiguration.vb","location":"lib/live.hms.video.signal.init/-server-configuration/vb.html","searchKeys":["vb","val vb: VB?","live.hms.video.signal.init.ServerConfiguration.vb"]},{"name":"val version: String","description":"live.hms.video.polls.models.answer.PollAnswerResponse.version","location":"lib/live.hms.video.polls.models.answer/-poll-answer-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.models.answer.PollAnswerResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollCreateResponse.version","location":"lib/live.hms.video.polls.network/-poll-create-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollCreateResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollGetResponsesReply.version","location":"lib/live.hms.video.polls.network/-poll-get-responses-reply/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollGetResponsesReply.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollQuestionGetResponse.version","location":"lib/live.hms.video.polls.network/-poll-question-get-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollQuestionGetResponse.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.PollStartRequest.version","location":"lib/live.hms.video.polls.network/-poll-start-request/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.PollStartRequest.version"]},{"name":"val version: String","description":"live.hms.video.polls.network.SetQuestionsResponse.version","location":"lib/live.hms.video.polls.network/-set-questions-response/version.html","searchKeys":["version","val version: String","live.hms.video.polls.network.SetQuestionsResponse.version"]},{"name":"val video: HMSRTCStats","description":"live.hms.video.connection.stats.HMSRTCStatsReport.video","location":"lib/live.hms.video.connection.stats/-h-m-s-r-t-c-stats-report/video.html","searchKeys":["video","val video: HMSRTCStats","live.hms.video.connection.stats.HMSRTCStatsReport.video"]},{"name":"val video: List","description":"live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.video","location":"lib/live.hms.video.connection.stats.clientside.model/-publish-analytic-payload/video.html","searchKeys":["video","val video: List","live.hms.video.connection.stats.clientside.model.PublishAnalyticPayload.video"]},{"name":"val video: VideoParams?","description":"live.hms.video.sdk.models.role.PublishParams.video","location":"lib/live.hms.video.sdk.models.role/-publish-params/video.html","searchKeys":["video","val video: VideoParams?","live.hms.video.sdk.models.role.PublishParams.video"]},{"name":"val video: VideoSimulcastLayersParams?","description":"live.hms.video.sdk.models.role.Simulcast.video","location":"lib/live.hms.video.sdk.models.role/-simulcast/video.html","searchKeys":["video","val video: VideoSimulcastLayersParams?","live.hms.video.sdk.models.role.Simulcast.video"]},{"name":"val videoInputReport: VideoInputDeviceReport","description":"live.hms.video.diagnostics.models.DeviceTestReport.videoInputReport","location":"lib/live.hms.video.diagnostics.models/-device-test-report/video-input-report.html","searchKeys":["videoInputReport","val videoInputReport: VideoInputDeviceReport","live.hms.video.diagnostics.models.DeviceTestReport.videoInputReport"]},{"name":"val videoOnDemand: Boolean","description":"live.hms.video.sdk.models.HMSHlsRecordingConfig.videoOnDemand","location":"lib/live.hms.video.sdk.models/-h-m-s-hls-recording-config/video-on-demand.html","searchKeys":["videoOnDemand","val videoOnDemand: Boolean","live.hms.video.sdk.models.HMSHlsRecordingConfig.videoOnDemand"]},{"name":"val videoSamples: List","description":"live.hms.video.connection.stats.clientside.model.VideoAnalytics.videoSamples","location":"lib/live.hms.video.connection.stats.clientside.model/-video-analytics/video-samples.html","searchKeys":["videoSamples","val videoSamples: List","live.hms.video.connection.stats.clientside.model.VideoAnalytics.videoSamples"]},{"name":"val videoSettings: HMSVideoTrackSettings?","description":"live.hms.video.media.settings.HMSTrackSettings.videoSettings","location":"lib/live.hms.video.media.settings/-h-m-s-track-settings/video-settings.html","searchKeys":["videoSettings","val videoSettings: HMSVideoTrackSettings?","live.hms.video.media.settings.HMSTrackSettings.videoSettings"]},{"name":"val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.videoTileLayout","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/video-tile-layout.html","searchKeys":["videoTileLayout","val videoTileLayout: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.VideoTileLayout?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.videoTileLayout"]},{"name":"val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.virtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-conferencing/-default/-elements/virtual-background.html","searchKeys":["virtualBackground","val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.HMSVirtualBackground?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Conferencing.Default.Elements.virtualBackground"]},{"name":"val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?","description":"live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.virtualBackground","location":"lib/live.hms.video.signal.init/-h-m-s-room-layout/-h-m-s-room-layout-data/-screens/-preview/-default/-elements/virtual-background.html","searchKeys":["virtualBackground","val virtualBackground: HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.HMSVirtualBackground?","live.hms.video.signal.init.HMSRoomLayout.HMSRoomLayoutData.Screens.Preview.Default.Elements.virtualBackground"]},{"name":"val visibility: Boolean = true","description":"live.hms.video.polls.models.HmsPollCreationParams.visibility","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/visibility.html","searchKeys":["visibility","val visibility: Boolean = true","live.hms.video.polls.models.HmsPollCreationParams.visibility"]},{"name":"val volume: Double","description":"live.hms.video.media.settings.HMSAudioTrackSettings.volume","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/volume.html","searchKeys":["volume","val volume: Double","live.hms.video.media.settings.HMSAudioTrackSettings.volume"]},{"name":"val vote: List? = null","description":"live.hms.video.polls.models.HmsPollCreationParams.vote","location":"lib/live.hms.video.polls.models/-hms-poll-creation-params/vote.html","searchKeys":["vote","val vote: List? = null","live.hms.video.polls.models.HmsPollCreationParams.vote"]},{"name":"val voted: Boolean","description":"live.hms.video.polls.models.question.HMSPollQuestion.voted","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/voted.html","searchKeys":["voted","val voted: Boolean","live.hms.video.polls.models.question.HMSPollQuestion.voted"]},{"name":"val votedUsers: Long?","description":"live.hms.video.polls.network.HMSPollLeaderboardResponse.votedUsers","location":"lib/live.hms.video.polls.network/-h-m-s-poll-leaderboard-response/voted-users.html","searchKeys":["votedUsers","val votedUsers: Long?","live.hms.video.polls.network.HMSPollLeaderboardResponse.votedUsers"]},{"name":"val votingUsers: Long","description":"live.hms.video.polls.network.PollResultsResponse.votingUsers","location":"lib/live.hms.video.polls.network/-poll-results-response/voting-users.html","searchKeys":["votingUsers","val votingUsers: Long","live.hms.video.polls.network.PollResultsResponse.votingUsers"]},{"name":"val votingUsers: Long? = null","description":"live.hms.video.polls.network.PollResultsDisplay.votingUsers","location":"lib/live.hms.video.polls.network/-poll-results-display/voting-users.html","searchKeys":["votingUsers","val votingUsers: Long? = null","live.hms.video.polls.network.PollResultsDisplay.votingUsers"]},{"name":"val weight: Int = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.weight","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/weight.html","searchKeys":["weight","val weight: Int = 0","live.hms.video.polls.models.question.HMSPollQuestion.weight"]},{"name":"val weight: Int = 1","description":"live.hms.video.polls.models.question.HmsPollQuestionCreation.weight","location":"lib/live.hms.video.polls.models.question/-hms-poll-question-creation/weight.html","searchKeys":["weight","val weight: Int = 1","live.hms.video.polls.models.question.HmsPollQuestionCreation.weight"]},{"name":"val weight: Int? = null","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.weight","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/weight.html","searchKeys":["weight","val weight: Int? = null","live.hms.video.polls.models.question.HMSPollQuestionOption.weight"]},{"name":"val whiteboard: HMSWhiteBoardPermission","description":"live.hms.video.sdk.models.role.PermissionsParams.whiteboard","location":"lib/live.hms.video.sdk.models.role/-permissions-params/whiteboard.html","searchKeys":["whiteboard","val whiteboard: HMSWhiteBoardPermission","live.hms.video.sdk.models.role.PermissionsParams.whiteboard"]},{"name":"val width: Int","description":"live.hms.video.connection.stats.clientside.model.Size.width","location":"lib/live.hms.video.connection.stats.clientside.model/-size/width.html","searchKeys":["width","val width: Int","live.hms.video.connection.stats.clientside.model.Size.width"]},{"name":"val width: Int","description":"live.hms.video.media.settings.HMSRtmpVideoResolution.width","location":"lib/live.hms.video.media.settings/-h-m-s-rtmp-video-resolution/width.html","searchKeys":["width","val width: Int","live.hms.video.media.settings.HMSRtmpVideoResolution.width"]},{"name":"val width: Int","description":"live.hms.video.sdk.models.role.VideoParams.width","location":"lib/live.hms.video.sdk.models.role/-video-params/width.html","searchKeys":["width","val width: Int","live.hms.video.sdk.models.role.VideoParams.width"]},{"name":"val writer: List","description":"live.hms.video.whiteboard.HMSWhiteboardPermissions.writer","location":"lib/live.hms.video.whiteboard/-h-m-s-whiteboard-permissions/writer.html","searchKeys":["writer","val writer: List","live.hms.video.whiteboard.HMSWhiteboardPermissions.writer"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.MIN_API_LEVEL","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.MIN_API_LEVEL"]},{"name":"var START_AUDIO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.START_AUDIO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/-s-t-a-r-t_-a-u-d-i-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_AUDIO_SAMPLE_DURATION","var START_AUDIO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.START_AUDIO_SAMPLE_DURATION"]},{"name":"var START_AUDIO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.START_AUDIO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/-s-t-a-r-t_-a-u-d-i-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_AUDIO_SAMPLE_DURATION","var START_AUDIO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.START_AUDIO_SAMPLE_DURATION"]},{"name":"var START_VIDEO_SAMPLE_DURATION: Double","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.START_VIDEO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/-s-t-a-r-t_-v-i-d-e-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_VIDEO_SAMPLE_DURATION","var START_VIDEO_SAMPLE_DURATION: Double","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.START_VIDEO_SAMPLE_DURATION"]},{"name":"var START_VIDEO_SAMPLE_DURATION: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.START_VIDEO_SAMPLE_DURATION","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/-s-t-a-r-t_-v-i-d-e-o_-s-a-m-p-l-e_-d-u-r-a-t-i-o-n.html","searchKeys":["START_VIDEO_SAMPLE_DURATION","var START_VIDEO_SAMPLE_DURATION: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.START_VIDEO_SAMPLE_DURATION"]},{"name":"var admin: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.admin","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/admin.html","searchKeys":["admin","var admin: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.admin"]},{"name":"var admin: Boolean = false","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.admin","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/admin.html","searchKeys":["admin","var admin: Boolean = false","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.admin"]},{"name":"var analyticsPeer: AnalyticsPeer","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.analyticsPeer","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/analytics-peer.html","searchKeys":["analyticsPeer","var analyticsPeer: AnalyticsPeer","live.hms.video.sdk.OfflineAnalyticsPeerInfo.analyticsPeer"]},{"name":"var audioConcealedSamples: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealedSamples","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-concealed-samples.html","searchKeys":["audioConcealedSamples","var audioConcealedSamples: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealedSamples"]},{"name":"var audioConcealmentEvents: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealmentEvents","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-concealment-events.html","searchKeys":["audioConcealmentEvents","var audioConcealmentEvents: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioConcealmentEvents"]},{"name":"var audioTotalSampleReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioTotalSampleReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/audio-total-sample-received.html","searchKeys":["audioTotalSampleReceived","var audioTotalSampleReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.audioTotalSampleReceived"]},{"name":"var auxiliaryTracks: MutableList","description":"live.hms.video.sdk.models.HMSPeer.auxiliaryTracks","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/auxiliary-tracks.html","searchKeys":["auxiliaryTracks","var auxiliaryTracks: MutableList","live.hms.video.sdk.models.HMSPeer.auxiliaryTracks"]},{"name":"var avSyncMsAvg: MutableList","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.avSyncMsAvg","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/av-sync-ms-avg.html","searchKeys":["avSyncMsAvg","var avSyncMsAvg: MutableList","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.avSyncMsAvg"]},{"name":"var availableIncomingBitrate: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.availableIncomingBitrate","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/available-incoming-bitrate.html","searchKeys":["availableIncomingBitrate","var availableIncomingBitrate: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.availableIncomingBitrate"]},{"name":"var availableIncomingBitrates: MutableList","description":"live.hms.video.sdk.SubscribeConnection.availableIncomingBitrates","location":"lib/live.hms.video.sdk/-subscribe-connection/available-incoming-bitrates.html","searchKeys":["availableIncomingBitrates","var availableIncomingBitrates: MutableList","live.hms.video.sdk.SubscribeConnection.availableIncomingBitrates"]},{"name":"var availableOutgoingBitrate: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.availableOutgoingBitrate","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/available-outgoing-bitrate.html","searchKeys":["availableOutgoingBitrate","var availableOutgoingBitrate: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.availableOutgoingBitrate"]},{"name":"var availableOutgoingBitrates: MutableList","description":"live.hms.video.sdk.PublishConnection.availableOutgoingBitrates","location":"lib/live.hms.video.sdk/-publish-connection/available-outgoing-bitrates.html","searchKeys":["availableOutgoingBitrates","var availableOutgoingBitrates: MutableList","live.hms.video.sdk.PublishConnection.availableOutgoingBitrates"]},{"name":"var browserRecordingState: HMSBrowserRecordingState","description":"live.hms.video.sdk.models.HMSRoom.browserRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/browser-recording-state.html","searchKeys":["browserRecordingState","var browserRecordingState: HMSBrowserRecordingState","live.hms.video.sdk.models.HMSRoom.browserRecordingState"]},{"name":"var bytesReceived: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.bytesReceived","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/bytes-received.html","searchKeys":["bytesReceived","var bytesReceived: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.bytesReceived"]},{"name":"var bytesReceived: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.bytesReceived","location":"lib/live.hms.video.sdk/-subscribe-connection/bytes-received.html","searchKeys":["bytesReceived","var bytesReceived: Long = 0","live.hms.video.sdk.SubscribeConnection.bytesReceived"]},{"name":"var bytesSent: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.bytesSent","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/bytes-sent.html","searchKeys":["bytesSent","var bytesSent: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.bytesSent"]},{"name":"var bytesSent: Long = 0","description":"live.hms.video.sdk.PublishConnection.bytesSent","location":"lib/live.hms.video.sdk/-publish-connection/bytes-sent.html","searchKeys":["bytesSent","var bytesSent: Long = 0","live.hms.video.sdk.PublishConnection.bytesSent"]},{"name":"var cameraFacing: HMSVideoTrackSettings.CameraFacing","description":"live.hms.video.media.settings.HMSVideoTrackSettings.cameraFacing","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/camera-facing.html","searchKeys":["cameraFacing","var cameraFacing: HMSVideoTrackSettings.CameraFacing","live.hms.video.media.settings.HMSVideoTrackSettings.cameraFacing"]},{"name":"var captureFormat: CameraEnumerationAndroid.CaptureFormat? = null","description":"live.hms.video.media.capturers.camera.CameraControl.captureFormat","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-format.html","searchKeys":["captureFormat","var captureFormat: CameraEnumerationAndroid.CaptureFormat? = null","live.hms.video.media.capturers.camera.CameraControl.captureFormat"]},{"name":"var captureNetworkQualityInPreview: Boolean = false","description":"live.hms.video.sdk.models.HMSConfig.captureNetworkQualityInPreview","location":"lib/live.hms.video.sdk.models/-h-m-s-config/capture-network-quality-in-preview.html","searchKeys":["captureNetworkQualityInPreview","var captureNetworkQualityInPreview: Boolean = false","live.hms.video.sdk.models.HMSConfig.captureNetworkQualityInPreview"]},{"name":"var captureRequestBuilder: CaptureRequest.Builder? = null","description":"live.hms.video.media.capturers.camera.CameraControl.captureRequestBuilder","location":"lib/live.hms.video.media.capturers.camera/-camera-control/capture-request-builder.html","searchKeys":["captureRequestBuilder","var captureRequestBuilder: CaptureRequest.Builder? = null","live.hms.video.media.capturers.camera.CameraControl.captureRequestBuilder"]},{"name":"var codec: HMSAudioCodec","description":"live.hms.video.media.settings.HMSAudioTrackSettings.codec","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/codec.html","searchKeys":["codec","var codec: HMSAudioCodec","live.hms.video.media.settings.HMSAudioTrackSettings.codec"]},{"name":"var codec: HMSVideoCodec","description":"live.hms.video.media.settings.HMSVideoTrackSettings.codec","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/codec.html","searchKeys":["codec","var codec: HMSVideoCodec","live.hms.video.media.settings.HMSVideoTrackSettings.codec"]},{"name":"var connectionQualityScore: Float? = null","description":"live.hms.video.diagnostics.models.MediaServerReport.connectionQualityScore","location":"lib/live.hms.video.diagnostics.models/-media-server-report/connection-quality-score.html","searchKeys":["connectionQualityScore","var connectionQualityScore: Float? = null","live.hms.video.diagnostics.models.MediaServerReport.connectionQualityScore"]},{"name":"var connectivityState: ConnectivityState","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.connectivityState","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/connectivity-state.html","searchKeys":["connectivityState","var connectivityState: ConnectivityState","live.hms.video.diagnostics.models.ConnectivityCheckResult.connectivityState"]},{"name":"var currentCameraSession: CameraCaptureSession? = null","description":"live.hms.video.media.capturers.camera.CameraControl.currentCameraSession","location":"lib/live.hms.video.media.capturers.camera/-camera-control/current-camera-session.html","searchKeys":["currentCameraSession","var currentCameraSession: CameraCaptureSession? = null","live.hms.video.media.capturers.camera.CameraControl.currentCameraSession"]},{"name":"var currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/current-round-trip-time.html","searchKeys":["currentRoundTripTime","var currentRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.currentRoundTripTime"]},{"name":"var currentRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.currentRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/current-round-trip-time.html","searchKeys":["currentRoundTripTime","var currentRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.currentRoundTripTime"]},{"name":"var currentSessionFile: File? = null","description":"live.hms.video.utils.LogUtils.currentSessionFile","location":"lib/live.hms.video.utils/-log-utils/current-session-file.html","searchKeys":["currentSessionFile","var currentSessionFile: File? = null","live.hms.video.utils.LogUtils.currentSessionFile"]},{"name":"var currentSessionFileWriter: FileWriter? = null","description":"live.hms.video.utils.LogUtils.currentSessionFileWriter","location":"lib/live.hms.video.utils/-log-utils/current-session-file-writer.html","searchKeys":["currentSessionFileWriter","var currentSessionFileWriter: FileWriter? = null","live.hms.video.utils.LogUtils.currentSessionFileWriter"]},{"name":"var currentWhiteBoardState: State","description":"live.hms.video.interactivity.HmsInteractivityCenter.currentWhiteBoardState","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/current-white-board-state.html","searchKeys":["currentWhiteBoardState","var currentWhiteBoardState: State","live.hms.video.interactivity.HmsInteractivityCenter.currentWhiteBoardState"]},{"name":"var description: String","description":"live.hms.video.error.HMSException.description","location":"lib/live.hms.video.error/-h-m-s-exception/description.html","searchKeys":["description","var description: String","live.hms.video.error.HMSException.description"]},{"name":"var description: String","description":"live.hms.video.media.tracks.HMSTrack.description","location":"lib/live.hms.video.media.tracks/-h-m-s-track/description.html","searchKeys":["description","var description: String","live.hms.video.media.tracks.HMSTrack.description"]},{"name":"var duration: Long?","description":"live.hms.video.polls.models.HmsPoll.duration","location":"lib/live.hms.video.polls.models/-hms-poll/duration.html","searchKeys":["duration","var duration: Long?","live.hms.video.polls.models.HmsPoll.duration"]},{"name":"var error: OnTranscriptionError? = null","description":"live.hms.video.sdk.models.Transcriptions.error","location":"lib/live.hms.video.sdk.models/-transcriptions/error.html","searchKeys":["error","var error: OnTranscriptionError? = null","live.hms.video.sdk.models.Transcriptions.error"]},{"name":"var fecPacketDiscarded: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketDiscarded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/fec-packet-discarded.html","searchKeys":["fecPacketDiscarded","var fecPacketDiscarded: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketDiscarded"]},{"name":"var fecPacketReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/fec-packet-received.html","searchKeys":["fecPacketReceived","var fecPacketReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.fecPacketReceived"]},{"name":"var framesDecoded: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDecoded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-decoded.html","searchKeys":["framesDecoded","var framesDecoded: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDecoded"]},{"name":"var framesDropped: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDropped","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-dropped.html","searchKeys":["framesDropped","var framesDropped: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesDropped"]},{"name":"var framesReceived: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/frames-received.html","searchKeys":["framesReceived","var framesReceived: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.framesReceived"]},{"name":"var freezeCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.freezeCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/freeze-count.html","searchKeys":["freezeCount","var freezeCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.freezeCount"]},{"name":"var height: Int","description":"live.hms.video.media.settings.HMSVideoResolution.height","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/height.html","searchKeys":["height","var height: Int","live.hms.video.media.settings.HMSVideoResolution.height"]},{"name":"var hlsRecordingState: HmsHlsRecordingState","description":"live.hms.video.sdk.models.HMSRoom.hlsRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/hls-recording-state.html","searchKeys":["hlsRecordingState","var hlsRecordingState: HmsHlsRecordingState","live.hms.video.sdk.models.HMSRoom.hlsRecordingState"]},{"name":"var hlsStreamingState: HMSHLSStreamingState","description":"live.hms.video.sdk.models.HMSRoom.hlsStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/hls-streaming-state.html","searchKeys":["hlsStreamingState","var hlsStreamingState: HMSHLSStreamingState","live.hms.video.sdk.models.HMSRoom.hlsStreamingState"]},{"name":"var hmsRole: HMSRole","description":"live.hms.video.sdk.models.HMSPeer.hmsRole","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/hms-role.html","searchKeys":["hmsRole","var hmsRole: HMSRole","live.hms.video.sdk.models.HMSPeer.hmsRole"]},{"name":"var imageReader: ImageReader? = null","description":"live.hms.video.media.capturers.camera.CameraControl.imageReader","location":"lib/live.hms.video.media.capturers.camera/-camera-control/image-reader.html","searchKeys":["imageReader","var imageReader: ImageReader? = null","live.hms.video.media.capturers.camera.CameraControl.imageReader"]},{"name":"var initialisedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.initialisedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/initialised-at.html","searchKeys":["initialisedAt","var initialisedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.initialisedAt"]},{"name":"var isConnected: Boolean = false","description":"live.hms.video.diagnostics.models.SignallingReport.isConnected","location":"lib/live.hms.video.diagnostics.models/-signalling-report/is-connected.html","searchKeys":["isConnected","var isConnected: Boolean = false","live.hms.video.diagnostics.models.SignallingReport.isConnected"]},{"name":"var isHandRaised: Boolean = false","description":"live.hms.video.sdk.models.HMSPeer.isHandRaised","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/is-hand-raised.html","searchKeys":["isHandRaised","var isHandRaised: Boolean = false","live.hms.video.sdk.models.HMSPeer.isHandRaised"]},{"name":"var isInitConnected: Boolean = false","description":"live.hms.video.diagnostics.models.SignallingReport.isInitConnected","location":"lib/live.hms.video.diagnostics.models/-signalling-report/is-init-connected.html","searchKeys":["isInitConnected","var isInitConnected: Boolean = false","live.hms.video.diagnostics.models.SignallingReport.isInitConnected"]},{"name":"var isLargeRoom: Boolean = false","description":"live.hms.video.sdk.models.HMSRoom.isLargeRoom","location":"lib/live.hms.video.sdk.models/-h-m-s-room/is-large-room.html","searchKeys":["isLargeRoom","var isLargeRoom: Boolean = false","live.hms.video.sdk.models.HMSRoom.isLargeRoom"]},{"name":"var isMute: Boolean = false","description":"live.hms.video.media.tracks.HMSTrack.isMute","location":"lib/live.hms.video.media.tracks/-h-m-s-track/is-mute.html","searchKeys":["isMute","var isMute: Boolean = false","live.hms.video.media.tracks.HMSTrack.isMute"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.AudioInputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-audio-input-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.AudioInputDeviceReport.isPassed"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.AudioOutputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-audio-output-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.AudioOutputDeviceReport.isPassed"]},{"name":"var isPassed: Boolean = false","description":"live.hms.video.diagnostics.models.VideoInputDeviceReport.isPassed","location":"lib/live.hms.video.diagnostics.models/-video-input-device-report/is-passed.html","searchKeys":["isPassed","var isPassed: Boolean = false","live.hms.video.diagnostics.models.VideoInputDeviceReport.isPassed"]},{"name":"var isPublishICEConnected: Boolean = false","description":"live.hms.video.diagnostics.models.MediaServerReport.isPublishICEConnected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/is-publish-i-c-e-connected.html","searchKeys":["isPublishICEConnected","var isPublishICEConnected: Boolean = false","live.hms.video.diagnostics.models.MediaServerReport.isPublishICEConnected"]},{"name":"var isSubcribeICEConnected: Boolean = false","description":"live.hms.video.diagnostics.models.MediaServerReport.isSubcribeICEConnected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/is-subcribe-i-c-e-connected.html","searchKeys":["isSubcribeICEConnected","var isSubcribeICEConnected: Boolean = false","live.hms.video.diagnostics.models.MediaServerReport.isSubcribeICEConnected"]},{"name":"var isTerminal: Boolean = true","description":"live.hms.video.error.HMSException.isTerminal","location":"lib/live.hms.video.error/-h-m-s-exception/is-terminal.html","searchKeys":["isTerminal","var isTerminal: Boolean = true","live.hms.video.error.HMSException.isTerminal"]},{"name":"var joinedAt: Long","description":"live.hms.video.sdk.models.HMSPeer.joinedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/joined-at.html","searchKeys":["joinedAt","var joinedAt: Long","live.hms.video.sdk.models.HMSPeer.joinedAt"]},{"name":"var joinedAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.joinedAt","location":"lib/live.hms.video.database.entity/-analytics-peer/joined-at.html","searchKeys":["joinedAt","var joinedAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.joinedAt"]},{"name":"var lastFramesDecoded: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDecoded","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-decoded.html","searchKeys":["lastFramesDecoded","var lastFramesDecoded: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDecoded"]},{"name":"var lastFramesDropped: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDropped","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-dropped.html","searchKeys":["lastFramesDropped","var lastFramesDropped: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesDropped"]},{"name":"var lastFramesReceived: Float","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-frames-received.html","searchKeys":["lastFramesReceived","var lastFramesReceived: Float","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastFramesReceived"]},{"name":"var lastSample: AudioSamplesSubscribe? = null","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.lastSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/last-sample.html","searchKeys":["lastSample","var lastSample: AudioSamplesSubscribe? = null","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.lastSample"]},{"name":"var lastSample: VideoSamplesSubscribe? = null","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastSample","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/last-sample.html","searchKeys":["lastSample","var lastSample: VideoSamplesSubscribe? = null","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.lastSample"]},{"name":"var leftAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.leftAt","location":"lib/live.hms.video.database.entity/-analytics-peer/left-at.html","searchKeys":["leftAt","var leftAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.leftAt"]},{"name":"var level: HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.level","location":"lib/live.hms.video.utils/-h-m-s-logger/level.html","searchKeys":["level","var level: HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.level"]},{"name":"var limit: Int = 10","description":"live.hms.video.sdk.models.PeerListIterator.limit","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/limit.html","searchKeys":["limit","var limit: Int = 10","live.hms.video.sdk.models.PeerListIterator.limit"]},{"name":"var local: IceCandidate? = null","description":"live.hms.video.diagnostics.models.IceCandidatePair.local","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/local.html","searchKeys":["local","var local: IceCandidate? = null","live.hms.video.diagnostics.models.IceCandidatePair.local"]},{"name":"var maxBitRate: Int","description":"live.hms.video.media.settings.HMSVideoTrackSettings.maxBitRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/max-bit-rate.html","searchKeys":["maxBitRate","var maxBitRate: Int","live.hms.video.media.settings.HMSVideoTrackSettings.maxBitRate"]},{"name":"var maxBitrate: Int","description":"live.hms.video.media.settings.HMSAudioTrackSettings.maxBitrate","location":"lib/live.hms.video.media.settings/-h-m-s-audio-track-settings/max-bitrate.html","searchKeys":["maxBitrate","var maxBitrate: Int","live.hms.video.media.settings.HMSAudioTrackSettings.maxBitrate"]},{"name":"var maxFrameRate: Int = 24","description":"live.hms.video.media.settings.HMSVideoTrackSettings.maxFrameRate","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/max-frame-rate.html","searchKeys":["maxFrameRate","var maxFrameRate: Int = 24","live.hms.video.media.settings.HMSVideoTrackSettings.maxFrameRate"]},{"name":"var metadata: String","description":"live.hms.video.sdk.models.HMSConfig.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-config/metadata.html","searchKeys":["metadata","var metadata: String","live.hms.video.sdk.models.HMSConfig.metadata"]},{"name":"var metadata: String","description":"live.hms.video.sdk.models.HMSPeer.metadata","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/metadata.html","searchKeys":["metadata","var metadata: String","live.hms.video.sdk.models.HMSPeer.metadata"]},{"name":"var mode: TranscriptionsMode? = null","description":"live.hms.video.sdk.models.Transcriptions.mode","location":"lib/live.hms.video.sdk.models/-transcriptions/mode.html","searchKeys":["mode","var mode: TranscriptionsMode? = null","live.hms.video.sdk.models.Transcriptions.mode"]},{"name":"var mode: TranscriptionsMode? = null","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.mode","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/mode.html","searchKeys":["mode","var mode: TranscriptionsMode? = null","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.mode"]},{"name":"var nackCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.nackCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/nack-count.html","searchKeys":["nackCount","var nackCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.nackCount"]},{"name":"var name: String","description":"live.hms.video.sdk.models.HMSPeer.name","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/name.html","searchKeys":["name","var name: String","live.hms.video.sdk.models.HMSPeer.name"]},{"name":"var name: String","description":"live.hms.video.sdk.models.HMSRoom.name","location":"lib/live.hms.video.sdk.models/-h-m-s-room/name.html","searchKeys":["name","var name: String","live.hms.video.sdk.models.HMSRoom.name"]},{"name":"var networkQuality: HMSNetworkQuality? = null","description":"live.hms.video.sdk.models.HMSPeer.networkQuality","location":"lib/live.hms.video.sdk.models/-h-m-s-peer/network-quality.html","searchKeys":["networkQuality","var networkQuality: HMSNetworkQuality? = null","live.hms.video.sdk.models.HMSPeer.networkQuality"]},{"name":"var options: MutableList>","description":"live.hms.video.polls.HMSPollQuestionBuilder.Builder.options","location":"lib/live.hms.video.polls/-h-m-s-poll-question-builder/-builder/options.html","searchKeys":["options","var options: MutableList>","live.hms.video.polls.HMSPollQuestionBuilder.Builder.options"]},{"name":"var packetLoss: Long = 0","description":"live.hms.video.sdk.PublishConnection.packetLoss","location":"lib/live.hms.video.sdk/-publish-connection/packet-loss.html","searchKeys":["packetLoss","var packetLoss: Long = 0","live.hms.video.sdk.PublishConnection.packetLoss"]},{"name":"var packetLoss: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.packetLoss","location":"lib/live.hms.video.sdk/-subscribe-connection/packet-loss.html","searchKeys":["packetLoss","var packetLoss: Long = 0","live.hms.video.sdk.SubscribeConnection.packetLoss"]},{"name":"var packetsReceived: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.packetsReceived","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/packets-received.html","searchKeys":["packetsReceived","var packetsReceived: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.packetsReceived"]},{"name":"var packetsReceived: Long = 0","description":"live.hms.video.sdk.SubscribeConnection.packetsReceived","location":"lib/live.hms.video.sdk/-subscribe-connection/packets-received.html","searchKeys":["packetsReceived","var packetsReceived: Long = 0","live.hms.video.sdk.SubscribeConnection.packetsReceived"]},{"name":"var packetsSent: BigInteger?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.packetsSent","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/packets-sent.html","searchKeys":["packetsSent","var packetsSent: BigInteger?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.packetsSent"]},{"name":"var packetsSent: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.packetsSent","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/packets-sent.html","searchKeys":["packetsSent","var packetsSent: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.packetsSent"]},{"name":"var packetsSent: Long = 0","description":"live.hms.video.sdk.PublishConnection.packetsSent","location":"lib/live.hms.video.sdk/-publish-connection/packets-sent.html","searchKeys":["packetsSent","var packetsSent: Long = 0","live.hms.video.sdk.PublishConnection.packetsSent"]},{"name":"var pauseCount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.pauseCount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/pause-count.html","searchKeys":["pauseCount","var pauseCount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.pauseCount"]},{"name":"var peerCount: Int? = null","description":"live.hms.video.sdk.models.HMSRoom.peerCount","location":"lib/live.hms.video.sdk.models/-h-m-s-room/peer-count.html","searchKeys":["peerCount","var peerCount: Int? = null","live.hms.video.sdk.models.HMSRoom.peerCount"]},{"name":"var peerId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.peerId","location":"lib/live.hms.video.database.entity/-analytics-peer/peer-id.html","searchKeys":["peerId","var peerId: String? = null","live.hms.video.database.entity.AnalyticsPeer.peerId"]},{"name":"var plicount: Int = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.plicount","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/plicount.html","searchKeys":["plicount","var plicount: Int = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.plicount"]},{"name":"var pollUpdateListener: HmsPollUpdateListener? = null","description":"live.hms.video.interactivity.HmsInteractivityCenter.pollUpdateListener","location":"lib/live.hms.video.interactivity/-hms-interactivity-center/poll-update-listener.html","searchKeys":["pollUpdateListener","var pollUpdateListener: HmsPollUpdateListener? = null","live.hms.video.interactivity.HmsInteractivityCenter.pollUpdateListener"]},{"name":"var publishICECandidatePairSelected: IceCandidatePair","description":"live.hms.video.diagnostics.models.MediaServerReport.publishICECandidatePairSelected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/publish-i-c-e-candidate-pair-selected.html","searchKeys":["publishICECandidatePairSelected","var publishICECandidatePairSelected: IceCandidatePair","live.hms.video.diagnostics.models.MediaServerReport.publishICECandidatePairSelected"]},{"name":"var publishParams: PublishParams?","description":"live.hms.video.sdk.models.role.HMSRole.publishParams","location":"lib/live.hms.video.sdk.models.role/-h-m-s-role/publish-params.html","searchKeys":["publishParams","var publishParams: PublishParams?","live.hms.video.sdk.models.role.HMSRole.publishParams"]},{"name":"var qualityReasons: QualityLimitationReasons? = null","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.qualityReasons","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/quality-reasons.html","searchKeys":["qualityReasons","var qualityReasons: QualityLimitationReasons? = null","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.qualityReasons"]},{"name":"var questionId: Int = 1","description":"live.hms.video.polls.HMSPollBuilder.Builder.questionId","location":"lib/live.hms.video.polls/-h-m-s-poll-builder/-builder/question-id.html","searchKeys":["questionId","var questionId: Int = 1","live.hms.video.polls.HMSPollBuilder.Builder.questionId"]},{"name":"var questions: List?","description":"live.hms.video.polls.models.HmsPoll.questions","location":"lib/live.hms.video.polls.models/-hms-poll/questions.html","searchKeys":["questions","var questions: List?","live.hms.video.polls.models.HmsPoll.questions"]},{"name":"var read: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.read","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/read.html","searchKeys":["read","var read: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.read"]},{"name":"var read: Boolean = false","description":"live.hms.video.sdk.models.role.HMSTranscriptionPermissions.read","location":"lib/live.hms.video.sdk.models.role/-h-m-s-transcription-permissions/read.html","searchKeys":["read","var read: Boolean = false","live.hms.video.sdk.models.role.HMSTranscriptionPermissions.read"]},{"name":"var recipientPeer: HMSPeer? = null","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientPeer","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-peer.html","searchKeys":["recipientPeer","var recipientPeer: HMSPeer? = null","live.hms.video.sdk.models.HMSMessageRecipient.recipientPeer"]},{"name":"var recipientRoles: List","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientRoles","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-roles.html","searchKeys":["recipientRoles","var recipientRoles: List","live.hms.video.sdk.models.HMSMessageRecipient.recipientRoles"]},{"name":"var recipientType: HMSMessageRecipientType","description":"live.hms.video.sdk.models.HMSMessageRecipient.recipientType","location":"lib/live.hms.video.sdk.models/-h-m-s-message-recipient/recipient-type.html","searchKeys":["recipientType","var recipientType: HMSMessageRecipientType","live.hms.video.sdk.models.HMSMessageRecipient.recipientType"]},{"name":"var remote: IceCandidate? = null","description":"live.hms.video.diagnostics.models.IceCandidatePair.remote","location":"lib/live.hms.video.diagnostics.models/-ice-candidate-pair/remote.html","searchKeys":["remote","var remote: IceCandidate? = null","live.hms.video.diagnostics.models.IceCandidatePair.remote"]},{"name":"var resolution: HMSVideoResolution","description":"live.hms.video.media.settings.HMSVideoTrackSettings.resolution","location":"lib/live.hms.video.media.settings/-h-m-s-video-track-settings/resolution.html","searchKeys":["resolution","var resolution: HMSVideoResolution","live.hms.video.media.settings.HMSVideoTrackSettings.resolution"]},{"name":"var result: PollResultsDisplay? = null","description":"live.hms.video.polls.models.HmsPoll.result","location":"lib/live.hms.video.polls.models/-hms-poll/result.html","searchKeys":["result","var result: PollResultsDisplay? = null","live.hms.video.polls.models.HmsPoll.result"]},{"name":"var role: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.role","location":"lib/live.hms.video.database.entity/-analytics-peer/role.html","searchKeys":["role","var role: String? = null","live.hms.video.database.entity.AnalyticsPeer.role"]},{"name":"var roomId: String","description":"live.hms.video.sdk.models.HMSRoom.roomId","location":"lib/live.hms.video.sdk.models/-h-m-s-room/room-id.html","searchKeys":["roomId","var roomId: String","live.hms.video.sdk.models.HMSRoom.roomId"]},{"name":"var roomName: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.roomName","location":"lib/live.hms.video.database.entity/-analytics-peer/room-name.html","searchKeys":["roomName","var roomName: String? = null","live.hms.video.database.entity.AnalyticsPeer.roomName"]},{"name":"var rtmpHMSRtmpStreamingState: HMSRtmpStreamingState","description":"live.hms.video.sdk.models.HMSRoom.rtmpHMSRtmpStreamingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/rtmp-h-m-s-rtmp-streaming-state.html","searchKeys":["rtmpHMSRtmpStreamingState","var rtmpHMSRtmpStreamingState: HMSRtmpStreamingState","live.hms.video.sdk.models.HMSRoom.rtmpHMSRtmpStreamingState"]},{"name":"var sender: HMSPeer?","description":"live.hms.video.sdk.models.HMSMessage.sender","location":"lib/live.hms.video.sdk.models/-h-m-s-message/sender.html","searchKeys":["sender","var sender: HMSPeer?","live.hms.video.sdk.models.HMSMessage.sender"]},{"name":"var serverReceiveTime: Long","description":"live.hms.video.sdk.models.HMSMessage.serverReceiveTime","location":"lib/live.hms.video.sdk.models/-h-m-s-message/server-receive-time.html","searchKeys":["serverReceiveTime","var serverReceiveTime: Long","live.hms.video.sdk.models.HMSMessage.serverReceiveTime"]},{"name":"var serverRecordingState: HMSServerRecordingState","description":"live.hms.video.sdk.models.HMSRoom.serverRecordingState","location":"lib/live.hms.video.sdk.models/-h-m-s-room/server-recording-state.html","searchKeys":["serverRecordingState","var serverRecordingState: HMSServerRecordingState","live.hms.video.sdk.models.HMSRoom.serverRecordingState"]},{"name":"var sessionId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.sessionId","location":"lib/live.hms.video.database.entity/-analytics-peer/session-id.html","searchKeys":["sessionId","var sessionId: String? = null","live.hms.video.database.entity.AnalyticsPeer.sessionId"]},{"name":"var sessionId: String? = null","description":"live.hms.video.sdk.models.HMSRoom.sessionId","location":"lib/live.hms.video.sdk.models/-h-m-s-room/session-id.html","searchKeys":["sessionId","var sessionId: String? = null","live.hms.video.sdk.models.HMSRoom.sessionId"]},{"name":"var sessionStartedAt: Long? = null","description":"live.hms.video.database.entity.AnalyticsPeer.sessionStartedAt","location":"lib/live.hms.video.database.entity/-analytics-peer/session-started-at.html","searchKeys":["sessionStartedAt","var sessionStartedAt: Long? = null","live.hms.video.database.entity.AnalyticsPeer.sessionStartedAt"]},{"name":"var settings: HMSAudioTrackSettings","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.settings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/settings.html","searchKeys":["settings","var settings: HMSAudioTrackSettings","live.hms.video.media.tracks.HMSLocalAudioTrack.settings"]},{"name":"var settings: HMSVideoTrackSettings","description":"live.hms.video.media.tracks.HMSLocalVideoTrack.settings","location":"lib/live.hms.video.media.tracks/-h-m-s-local-video-track/settings.html","searchKeys":["settings","var settings: HMSVideoTrackSettings","live.hms.video.media.tracks.HMSLocalVideoTrack.settings"]},{"name":"var source: String","description":"live.hms.video.media.tracks.HMSTrack.source","location":"lib/live.hms.video.media.tracks/-h-m-s-track/source.html","searchKeys":["source","var source: String","live.hms.video.media.tracks.HMSTrack.source"]},{"name":"var startedAt: Long? = null","description":"live.hms.video.sdk.models.HMSRoom.startedAt","location":"lib/live.hms.video.sdk.models/-h-m-s-room/started-at.html","searchKeys":["startedAt","var startedAt: Long? = null","live.hms.video.sdk.models.HMSRoom.startedAt"]},{"name":"var startedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.startedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/started-at.html","searchKeys":["startedAt","var startedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.startedAt"]},{"name":"var state: HMSStreamingState","description":"live.hms.video.sdk.models.HMSRtmpStreamingState.state","location":"lib/live.hms.video.sdk.models/-h-m-s-rtmp-streaming-state/state.html","searchKeys":["state","var state: HMSStreamingState","live.hms.video.sdk.models.HMSRtmpStreamingState.state"]},{"name":"var state: TranscriptionState? = null","description":"live.hms.video.sdk.models.Transcriptions.state","location":"lib/live.hms.video.sdk.models/-transcriptions/state.html","searchKeys":["state","var state: TranscriptionState? = null","live.hms.video.sdk.models.Transcriptions.state"]},{"name":"var stats: HMSRTCStatsReport? = null","description":"live.hms.video.diagnostics.models.MediaServerReport.stats","location":"lib/live.hms.video.diagnostics.models/-media-server-report/stats.html","searchKeys":["stats","var stats: HMSRTCStatsReport? = null","live.hms.video.diagnostics.models.MediaServerReport.stats"]},{"name":"var stoppedAt: Long? = null","description":"live.hms.video.polls.models.HmsPoll.stoppedAt","location":"lib/live.hms.video.polls.models/-hms-poll/stopped-at.html","searchKeys":["stoppedAt","var stoppedAt: Long? = null","live.hms.video.polls.models.HmsPoll.stoppedAt"]},{"name":"var stoppedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.stoppedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/stopped-at.html","searchKeys":["stoppedAt","var stoppedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.stoppedAt"]},{"name":"var subscribeICECandidatePairSelected: IceCandidatePair","description":"live.hms.video.diagnostics.models.MediaServerReport.subscribeICECandidatePairSelected","location":"lib/live.hms.video.diagnostics.models/-media-server-report/subscribe-i-c-e-candidate-pair-selected.html","searchKeys":["subscribeICECandidatePairSelected","var subscribeICECandidatePairSelected: IceCandidatePair","live.hms.video.diagnostics.models.MediaServerReport.subscribeICECandidatePairSelected"]},{"name":"var templateId: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.templateId","location":"lib/live.hms.video.database.entity/-analytics-peer/template-id.html","searchKeys":["templateId","var templateId: String? = null","live.hms.video.database.entity.AnalyticsPeer.templateId"]},{"name":"var testTimestamp: Long? = null","description":"live.hms.video.diagnostics.models.ConnectivityCheckResult.testTimestamp","location":"lib/live.hms.video.diagnostics.models/-connectivity-check-result/test-timestamp.html","searchKeys":["testTimestamp","var testTimestamp: Long? = null","live.hms.video.diagnostics.models.ConnectivityCheckResult.testTimestamp"]},{"name":"var textures: IntArray","description":"live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.textures","location":"lib/live.hms.video.plugin.video.utils/-h-m-s-bitmap-plugin/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.video.plugin.video.utils.HMSBitmapPlugin.Companion.textures"]},{"name":"var timeTakenWithML: Long = 0","description":"live.hms.video.sdk.ProcessTimeVariables.timeTakenWithML","location":"lib/live.hms.video.sdk/-process-time-variables/time-taken-with-m-l.html","searchKeys":["timeTakenWithML","var timeTakenWithML: Long = 0","live.hms.video.sdk.ProcessTimeVariables.timeTakenWithML"]},{"name":"var timeTakenWithoutML: Long = 0","description":"live.hms.video.sdk.ProcessTimeVariables.timeTakenWithoutML","location":"lib/live.hms.video.sdk/-process-time-variables/time-taken-without-m-l.html","searchKeys":["timeTakenWithoutML","var timeTakenWithoutML: Long = 0","live.hms.video.sdk.ProcessTimeVariables.timeTakenWithoutML"]},{"name":"var token: String? = null","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.token","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/token.html","searchKeys":["token","var token: String? = null","live.hms.video.sdk.OfflineAnalyticsPeerInfo.token"]},{"name":"var total: Int = 0","description":"live.hms.video.polls.models.question.HMSPollQuestion.total","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question/total.html","searchKeys":["total","var total: Int = 0","live.hms.video.polls.models.question.HMSPollQuestion.total"]},{"name":"var totalCount: Int = 0","description":"live.hms.video.sdk.models.PeerListIterator.totalCount","location":"lib/live.hms.video.sdk.models/-peer-list-iterator/total-count.html","searchKeys":["totalCount","var totalCount: Int = 0","live.hms.video.sdk.models.PeerListIterator.totalCount"]},{"name":"var totalFreezesDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalFreezesDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/total-freezes-duration.html","searchKeys":["totalFreezesDuration","var totalFreezesDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalFreezesDuration"]},{"name":"var totalPacketLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-packet-lost.html","searchKeys":["totalPacketLost","var totalPacketLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketLost"]},{"name":"var totalPacketReceived: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketReceived","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-packet-received.html","searchKeys":["totalPacketReceived","var totalPacketReceived: Long = 0","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalPacketReceived"]},{"name":"var totalPacketSendDelay: Double = 0.0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketSendDelay","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/total-packet-send-delay.html","searchKeys":["totalPacketSendDelay","var totalPacketSendDelay: Double = 0.0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketSendDelay"]},{"name":"var totalPacketsLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-audio-stats-sampler/total-packets-lost.html","searchKeys":["totalPacketsLost","var totalPacketsLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishAudioStatsSampler.totalPacketsLost"]},{"name":"var totalPacketsLost: Long = 0","description":"live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketsLost","location":"lib/live.hms.video.connection.stats.clientside.sampler/-publish-video-stats-sampler/total-packets-lost.html","searchKeys":["totalPacketsLost","var totalPacketsLost: Long = 0","live.hms.video.connection.stats.clientside.sampler.PublishVideoStatsSampler.totalPacketsLost"]},{"name":"var totalPausesDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalPausesDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-video-stats-sampler/total-pauses-duration.html","searchKeys":["totalPausesDuration","var totalPausesDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeVideoStatsSampler.totalPausesDuration"]},{"name":"var totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-publish-connection/total-round-trip-time.html","searchKeys":["totalRoundTripTime","var totalRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.PublishConnection.totalRoundTripTime"]},{"name":"var totalRoundTripTime: Double?","description":"live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.totalRoundTripTime","location":"lib/live.hms.video.connection.degredation/-connection-info/-subscribe-connection/total-round-trip-time.html","searchKeys":["totalRoundTripTime","var totalRoundTripTime: Double?","live.hms.video.connection.degredation.ConnectionInfo.SubscribeConnection.totalRoundTripTime"]},{"name":"var totalSampleDuration: Float = 0.0f","description":"live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalSampleDuration","location":"lib/live.hms.video.connection.stats.clientside.sampler/-subscribe-audio-stats-sampler/total-sample-duration.html","searchKeys":["totalSampleDuration","var totalSampleDuration: Float = 0.0f","live.hms.video.connection.stats.clientside.sampler.SubscribeAudioStatsSampler.totalSampleDuration"]},{"name":"var transcriptions: List","description":"live.hms.video.sdk.models.role.PermissionsParams.transcriptions","location":"lib/live.hms.video.sdk.models.role/-permissions-params/transcriptions.html","searchKeys":["transcriptions","var transcriptions: List","live.hms.video.sdk.models.role.PermissionsParams.transcriptions"]},{"name":"var updatedAt: Long? = null","description":"live.hms.video.sdk.models.Transcriptions.updatedAt","location":"lib/live.hms.video.sdk.models/-transcriptions/updated-at.html","searchKeys":["updatedAt","var updatedAt: Long? = null","live.hms.video.sdk.models.Transcriptions.updatedAt"]},{"name":"var userData: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.userData","location":"lib/live.hms.video.database.entity/-analytics-peer/user-data.html","searchKeys":["userData","var userData: String? = null","live.hms.video.database.entity.AnalyticsPeer.userData"]},{"name":"var userName: String? = null","description":"live.hms.video.database.entity.AnalyticsPeer.userName","location":"lib/live.hms.video.database.entity/-analytics-peer/user-name.html","searchKeys":["userName","var userName: String? = null","live.hms.video.database.entity.AnalyticsPeer.userName"]},{"name":"var videoTrack: HMSLocalVideoTrack? = null","description":"live.hms.video.diagnostics.HMSDiagnostics.videoTrack","location":"lib/live.hms.video.diagnostics/-h-m-s-diagnostics/video-track.html","searchKeys":["videoTrack","var videoTrack: HMSLocalVideoTrack? = null","live.hms.video.diagnostics.HMSDiagnostics.videoTrack"]},{"name":"var volume: Double","description":"live.hms.video.media.tracks.HMSLocalAudioTrack.volume","location":"lib/live.hms.video.media.tracks/-h-m-s-local-audio-track/volume.html","searchKeys":["volume","var volume: Double","live.hms.video.media.tracks.HMSLocalAudioTrack.volume"]},{"name":"var voteCount: Long = 0","description":"live.hms.video.polls.models.question.HMSPollQuestionOption.voteCount","location":"lib/live.hms.video.polls.models.question/-h-m-s-poll-question-option/vote-count.html","searchKeys":["voteCount","var voteCount: Long = 0","live.hms.video.polls.models.question.HMSPollQuestionOption.voteCount"]},{"name":"var webRtcLogLevel: HMSLogger.LogLevel","description":"live.hms.video.utils.HMSLogger.webRtcLogLevel","location":"lib/live.hms.video.utils/-h-m-s-logger/web-rtc-log-level.html","searchKeys":["webRtcLogLevel","var webRtcLogLevel: HMSLogger.LogLevel","live.hms.video.utils.HMSLogger.webRtcLogLevel"]},{"name":"var websocketUrl: String","description":"live.hms.video.database.entity.AnalyticsCluster.websocketUrl","location":"lib/live.hms.video.database.entity/-analytics-cluster/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String","live.hms.video.database.entity.AnalyticsCluster.websocketUrl"]},{"name":"var websocketUrl: String? = null","description":"live.hms.video.diagnostics.models.SignallingReport.websocketUrl","location":"lib/live.hms.video.diagnostics.models/-signalling-report/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String? = null","live.hms.video.diagnostics.models.SignallingReport.websocketUrl"]},{"name":"var websocketUrl: String? = null","description":"live.hms.video.sdk.OfflineAnalyticsPeerInfo.websocketUrl","location":"lib/live.hms.video.sdk/-offline-analytics-peer-info/websocket-url.html","searchKeys":["websocketUrl","var websocketUrl: String? = null","live.hms.video.sdk.OfflineAnalyticsPeerInfo.websocketUrl"]},{"name":"var width: Int","description":"live.hms.video.media.settings.HMSVideoResolution.width","location":"lib/live.hms.video.media.settings/-h-m-s-video-resolution/width.html","searchKeys":["width","var width: Int","live.hms.video.media.settings.HMSVideoResolution.width"]},{"name":"var write: Boolean","description":"live.hms.video.sdk.models.role.HMSWhiteBoardPermission.write","location":"lib/live.hms.video.sdk.models.role/-h-m-s-white-board-permission/write.html","searchKeys":["write","var write: Boolean","live.hms.video.sdk.models.role.HMSWhiteBoardPermission.write"]},{"name":"abstract fun onError(error: HMSException)","description":"live.hms.stats.PlayerStatsListener.onError","location":"stats/live.hms.stats/-player-stats-listener/on-error.html","searchKeys":["onError","abstract fun onError(error: HMSException)","live.hms.stats.PlayerStatsListener.onError"]},{"name":"abstract fun onEventUpdate(playerStatsModel: PlayerStatsModel)","description":"live.hms.stats.PlayerStatsListener.onEventUpdate","location":"stats/live.hms.stats/-player-stats-listener/on-event-update.html","searchKeys":["onEventUpdate","abstract fun onEventUpdate(playerStatsModel: PlayerStatsModel)","live.hms.stats.PlayerStatsListener.onEventUpdate"]},{"name":"class PlayerEventsCollector(var hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig()) : AnalyticsListener","description":"live.hms.stats.PlayerEventsCollector","location":"stats/live.hms.stats/-player-events-collector/index.html","searchKeys":["PlayerEventsCollector","class PlayerEventsCollector(var hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig()) : AnalyticsListener","live.hms.stats.PlayerEventsCollector"]},{"name":"class Utils","description":"live.hms.stats.Utils","location":"stats/live.hms.stats/-utils/index.html","searchKeys":["Utils","class Utils","live.hms.stats.Utils"]},{"name":"const val TAG: String","description":"live.hms.stats.PlayerEventsCollector.Companion.TAG","location":"stats/live.hms.stats/-player-events-collector/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.stats.PlayerEventsCollector.Companion.TAG"]},{"name":"data class Bandwidth(val bandWidthEstimate: Long = 0, val totalBytesLoaded: Long = 0, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/index.html","searchKeys":["Bandwidth","data class Bandwidth(val bandWidthEstimate: Long = 0, val totalBytesLoaded: Long = 0, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.Bandwidth"]},{"name":"data class FrameInfo(val droppedFrameCount: Int = 0, val totalFrameCount: Int = 0, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/index.html","searchKeys":["FrameInfo","data class FrameInfo(val droppedFrameCount: Int = 0, val totalFrameCount: Int = 0, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.FrameInfo"]},{"name":"data class InitConfig(var eventRate: Long = 1000)","description":"live.hms.stats.model.InitConfig","location":"stats/live.hms.stats.model/-init-config/index.html","searchKeys":["InitConfig","data class InitConfig(var eventRate: Long = 1000)","live.hms.stats.model.InitConfig"]},{"name":"data class PlayerStatsModel(var bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), var videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), var frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), var bufferedDuration: Long = 0, var distanceFromLive: Long = 0)","description":"live.hms.stats.model.PlayerStatsModel","location":"stats/live.hms.stats.model/-player-stats-model/index.html","searchKeys":["PlayerStatsModel","data class PlayerStatsModel(var bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), var videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), var frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), var bufferedDuration: Long = 0, var distanceFromLive: Long = 0)","live.hms.stats.model.PlayerStatsModel"]},{"name":"data class VideoInfo(var videoHeight: Int = 0, var videoWidth: Int = 0, var averageBitrate: Int = 0, val frameRate: Float = 0.0f, val eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/index.html","searchKeys":["VideoInfo","data class VideoInfo(var videoHeight: Int = 0, var videoWidth: Int = 0, var averageBitrate: Int = 0, val frameRate: Float = 0.0f, val eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.VideoInfo"]},{"name":"fun Bandwidth(bandWidthEstimate: Long = 0, totalBytesLoaded: Long = 0, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.Bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/-bandwidth.html","searchKeys":["Bandwidth","fun Bandwidth(bandWidthEstimate: Long = 0, totalBytesLoaded: Long = 0, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.Bandwidth.Bandwidth"]},{"name":"fun FrameInfo(droppedFrameCount: Int = 0, totalFrameCount: Int = 0, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.FrameInfo","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/-frame-info.html","searchKeys":["FrameInfo","fun FrameInfo(droppedFrameCount: Int = 0, totalFrameCount: Int = 0, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.FrameInfo.FrameInfo"]},{"name":"fun InitConfig(eventRate: Long = 1000)","description":"live.hms.stats.model.InitConfig.InitConfig","location":"stats/live.hms.stats.model/-init-config/-init-config.html","searchKeys":["InitConfig","fun InitConfig(eventRate: Long = 1000)","live.hms.stats.model.InitConfig.InitConfig"]},{"name":"fun PlayerEventsCollector(hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig())","description":"live.hms.stats.PlayerEventsCollector.PlayerEventsCollector","location":"stats/live.hms.stats/-player-events-collector/-player-events-collector.html","searchKeys":["PlayerEventsCollector","fun PlayerEventsCollector(hmsSdk: HMSSDK?, initConfig: InitConfig = InitConfig())","live.hms.stats.PlayerEventsCollector.PlayerEventsCollector"]},{"name":"fun PlayerStatsModel(bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), bufferedDuration: Long = 0, distanceFromLive: Long = 0)","description":"live.hms.stats.model.PlayerStatsModel.PlayerStatsModel","location":"stats/live.hms.stats.model/-player-stats-model/-player-stats-model.html","searchKeys":["PlayerStatsModel","fun PlayerStatsModel(bandwidth: PlayerStatsModel.Bandwidth = Bandwidth(), videoInfo: PlayerStatsModel.VideoInfo = VideoInfo(), frameInfo: PlayerStatsModel.FrameInfo = FrameInfo(), bufferedDuration: Long = 0, distanceFromLive: Long = 0)","live.hms.stats.model.PlayerStatsModel.PlayerStatsModel"]},{"name":"fun Utils()","description":"live.hms.stats.Utils.Utils","location":"stats/live.hms.stats/-utils/-utils.html","searchKeys":["Utils","fun Utils()","live.hms.stats.Utils.Utils"]},{"name":"fun VideoInfo(videoHeight: Int = 0, videoWidth: Int = 0, averageBitrate: Int = 0, frameRate: Float = 0.0f, eventTime: AnalyticsListener.EventTime? = null)","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.VideoInfo","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/-video-info.html","searchKeys":["VideoInfo","fun VideoInfo(videoHeight: Int = 0, videoWidth: Int = 0, averageBitrate: Int = 0, frameRate: Float = 0.0f, eventTime: AnalyticsListener.EventTime? = null)","live.hms.stats.model.PlayerStatsModel.VideoInfo.VideoInfo"]},{"name":"fun addStatsListener(playerEventsListener: PlayerStatsListener)","description":"live.hms.stats.PlayerEventsCollector.addStatsListener","location":"stats/live.hms.stats/-player-events-collector/add-stats-listener.html","searchKeys":["addStatsListener","fun addStatsListener(playerEventsListener: PlayerStatsListener)","live.hms.stats.PlayerEventsCollector.addStatsListener"]},{"name":"fun humanReadableByteCount(bytes: Long, si: Boolean, isBits: Boolean): String","description":"live.hms.stats.Utils.Companion.humanReadableByteCount","location":"stats/live.hms.stats/-utils/-companion/human-readable-byte-count.html","searchKeys":["humanReadableByteCount","fun humanReadableByteCount(bytes: Long, si: Boolean, isBits: Boolean): String","live.hms.stats.Utils.Companion.humanReadableByteCount"]},{"name":"fun removeListener()","description":"live.hms.stats.PlayerEventsCollector.removeListener","location":"stats/live.hms.stats/-player-events-collector/remove-listener.html","searchKeys":["removeListener","fun removeListener()","live.hms.stats.PlayerEventsCollector.removeListener"]},{"name":"fun removeStatsListener()","description":"live.hms.stats.PlayerEventsCollector.removeStatsListener","location":"stats/live.hms.stats/-player-events-collector/remove-stats-listener.html","searchKeys":["removeStatsListener","fun removeStatsListener()","live.hms.stats.PlayerEventsCollector.removeStatsListener"]},{"name":"fun setExoPlayer(exoPlayer: ExoPlayer?)","description":"live.hms.stats.PlayerEventsCollector.setExoPlayer","location":"stats/live.hms.stats/-player-events-collector/set-exo-player.html","searchKeys":["setExoPlayer","fun setExoPlayer(exoPlayer: ExoPlayer?)","live.hms.stats.PlayerEventsCollector.setExoPlayer"]},{"name":"interface PlayerStatsListener","description":"live.hms.stats.PlayerStatsListener","location":"stats/live.hms.stats/-player-stats-listener/index.html","searchKeys":["PlayerStatsListener","interface PlayerStatsListener","live.hms.stats.PlayerStatsListener"]},{"name":"object Companion","description":"live.hms.stats.PlayerEventsCollector.Companion","location":"stats/live.hms.stats/-player-events-collector/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.stats.PlayerEventsCollector.Companion"]},{"name":"object Companion","description":"live.hms.stats.Utils.Companion","location":"stats/live.hms.stats/-utils/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.stats.Utils.Companion"]},{"name":"open override fun onBandwidthEstimate(eventTime: AnalyticsListener.EventTime, totalLoadTimeMs: Int, totalBytesLoaded: Long, bitrateEstimate: Long)","description":"live.hms.stats.PlayerEventsCollector.onBandwidthEstimate","location":"stats/live.hms.stats/-player-events-collector/on-bandwidth-estimate.html","searchKeys":["onBandwidthEstimate","open override fun onBandwidthEstimate(eventTime: AnalyticsListener.EventTime, totalLoadTimeMs: Int, totalBytesLoaded: Long, bitrateEstimate: Long)","live.hms.stats.PlayerEventsCollector.onBandwidthEstimate"]},{"name":"open override fun onDroppedVideoFrames(eventTime: AnalyticsListener.EventTime, droppedFrames: Int, elapsedMs: Long)","description":"live.hms.stats.PlayerEventsCollector.onDroppedVideoFrames","location":"stats/live.hms.stats/-player-events-collector/on-dropped-video-frames.html","searchKeys":["onDroppedVideoFrames","open override fun onDroppedVideoFrames(eventTime: AnalyticsListener.EventTime, droppedFrames: Int, elapsedMs: Long)","live.hms.stats.PlayerEventsCollector.onDroppedVideoFrames"]},{"name":"open override fun onPlayerError(eventTime: AnalyticsListener.EventTime, error: PlaybackException)","description":"live.hms.stats.PlayerEventsCollector.onPlayerError","location":"stats/live.hms.stats/-player-events-collector/on-player-error.html","searchKeys":["onPlayerError","open override fun onPlayerError(eventTime: AnalyticsListener.EventTime, error: PlaybackException)","live.hms.stats.PlayerEventsCollector.onPlayerError"]},{"name":"open override fun onVideoInputFormatChanged(eventTime: AnalyticsListener.EventTime, format: Format, decoderReuseEvaluation: DecoderReuseEvaluation?)","description":"live.hms.stats.PlayerEventsCollector.onVideoInputFormatChanged","location":"stats/live.hms.stats/-player-events-collector/on-video-input-format-changed.html","searchKeys":["onVideoInputFormatChanged","open override fun onVideoInputFormatChanged(eventTime: AnalyticsListener.EventTime, format: Format, decoderReuseEvaluation: DecoderReuseEvaluation?)","live.hms.stats.PlayerEventsCollector.onVideoInputFormatChanged"]},{"name":"open override fun toString(): String","description":"live.hms.stats.model.PlayerStatsModel.toString","location":"stats/live.hms.stats.model/-player-stats-model/to-string.html","searchKeys":["toString","open override fun toString(): String","live.hms.stats.model.PlayerStatsModel.toString"]},{"name":"val bandWidthEstimate: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.bandWidthEstimate","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/band-width-estimate.html","searchKeys":["bandWidthEstimate","val bandWidthEstimate: Long = 0","live.hms.stats.model.PlayerStatsModel.Bandwidth.bandWidthEstimate"]},{"name":"val droppedFrameCount: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.droppedFrameCount","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/dropped-frame-count.html","searchKeys":["droppedFrameCount","val droppedFrameCount: Int = 0","live.hms.stats.model.PlayerStatsModel.FrameInfo.droppedFrameCount"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.Bandwidth.eventTime"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.FrameInfo.eventTime"]},{"name":"val eventTime: AnalyticsListener.EventTime? = null","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.eventTime","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/event-time.html","searchKeys":["eventTime","val eventTime: AnalyticsListener.EventTime? = null","live.hms.stats.model.PlayerStatsModel.VideoInfo.eventTime"]},{"name":"val frameRate: Float = 0.0f","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.frameRate","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/frame-rate.html","searchKeys":["frameRate","val frameRate: Float = 0.0f","live.hms.stats.model.PlayerStatsModel.VideoInfo.frameRate"]},{"name":"val totalBytesLoaded: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.Bandwidth.totalBytesLoaded","location":"stats/live.hms.stats.model/-player-stats-model/-bandwidth/total-bytes-loaded.html","searchKeys":["totalBytesLoaded","val totalBytesLoaded: Long = 0","live.hms.stats.model.PlayerStatsModel.Bandwidth.totalBytesLoaded"]},{"name":"val totalFrameCount: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.FrameInfo.totalFrameCount","location":"stats/live.hms.stats.model/-player-stats-model/-frame-info/total-frame-count.html","searchKeys":["totalFrameCount","val totalFrameCount: Int = 0","live.hms.stats.model.PlayerStatsModel.FrameInfo.totalFrameCount"]},{"name":"var averageBitrate: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.averageBitrate","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/average-bitrate.html","searchKeys":["averageBitrate","var averageBitrate: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.averageBitrate"]},{"name":"var bandwidth: PlayerStatsModel.Bandwidth","description":"live.hms.stats.model.PlayerStatsModel.bandwidth","location":"stats/live.hms.stats.model/-player-stats-model/bandwidth.html","searchKeys":["bandwidth","var bandwidth: PlayerStatsModel.Bandwidth","live.hms.stats.model.PlayerStatsModel.bandwidth"]},{"name":"var bufferedDuration: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.bufferedDuration","location":"stats/live.hms.stats.model/-player-stats-model/buffered-duration.html","searchKeys":["bufferedDuration","var bufferedDuration: Long = 0","live.hms.stats.model.PlayerStatsModel.bufferedDuration"]},{"name":"var distanceFromLive: Long = 0","description":"live.hms.stats.model.PlayerStatsModel.distanceFromLive","location":"stats/live.hms.stats.model/-player-stats-model/distance-from-live.html","searchKeys":["distanceFromLive","var distanceFromLive: Long = 0","live.hms.stats.model.PlayerStatsModel.distanceFromLive"]},{"name":"var eventRate: Long = 1000","description":"live.hms.stats.model.InitConfig.eventRate","location":"stats/live.hms.stats.model/-init-config/event-rate.html","searchKeys":["eventRate","var eventRate: Long = 1000","live.hms.stats.model.InitConfig.eventRate"]},{"name":"var frameInfo: PlayerStatsModel.FrameInfo","description":"live.hms.stats.model.PlayerStatsModel.frameInfo","location":"stats/live.hms.stats.model/-player-stats-model/frame-info.html","searchKeys":["frameInfo","var frameInfo: PlayerStatsModel.FrameInfo","live.hms.stats.model.PlayerStatsModel.frameInfo"]},{"name":"var hmsSdk: HMSSDK?","description":"live.hms.stats.PlayerEventsCollector.hmsSdk","location":"stats/live.hms.stats/-player-events-collector/hms-sdk.html","searchKeys":["hmsSdk","var hmsSdk: HMSSDK?","live.hms.stats.PlayerEventsCollector.hmsSdk"]},{"name":"var videoHeight: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.videoHeight","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/video-height.html","searchKeys":["videoHeight","var videoHeight: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.videoHeight"]},{"name":"var videoInfo: PlayerStatsModel.VideoInfo","description":"live.hms.stats.model.PlayerStatsModel.videoInfo","location":"stats/live.hms.stats.model/-player-stats-model/video-info.html","searchKeys":["videoInfo","var videoInfo: PlayerStatsModel.VideoInfo","live.hms.stats.model.PlayerStatsModel.videoInfo"]},{"name":"var videoWidth: Int = 0","description":"live.hms.stats.model.PlayerStatsModel.VideoInfo.videoWidth","location":"stats/live.hms.stats.model/-player-stats-model/-video-info/video-width.html","searchKeys":["videoWidth","var videoWidth: Int = 0","live.hms.stats.model.PlayerStatsModel.VideoInfo.videoWidth"]},{"name":"class HMSVirtualBackground(hmsSdk: HMSSDK) : HmsVirtualBackgroundInterface","description":"live.hms.video.virtualbackground.HMSVirtualBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/index.html","searchKeys":["HMSVirtualBackground","class HMSVirtualBackground(hmsSdk: HMSSDK) : HmsVirtualBackgroundInterface","live.hms.video.virtualbackground.HMSVirtualBackground"]},{"name":"const val TAG: String","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.TAG","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.TAG"]},{"name":"fun executeOnMainThreadBlocking(task: () -> T): T","description":"live.hms.video.virtualbackground.MainThreadExecutor.executeOnMainThreadBlocking","location":"virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/execute-on-main-thread-blocking.html","searchKeys":["executeOnMainThreadBlocking","fun executeOnMainThreadBlocking(task: () -> T): T","live.hms.video.virtualbackground.MainThreadExecutor.executeOnMainThreadBlocking"]},{"name":"fun EffectsSDK.init(context: Context, effectsKey: String)","description":"live.hms.video.virtualbackground.init","location":"virtualBackground/live.hms.video.virtualbackground/init.html","searchKeys":["init","fun EffectsSDK.init(context: Context, effectsKey: String)","live.hms.video.virtualbackground.init"]},{"name":"fun HMSVirtualBackground(hmsSdk: HMSSDK)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.HMSVirtualBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-h-m-s-virtual-background.html","searchKeys":["HMSVirtualBackground","fun HMSVirtualBackground(hmsSdk: HMSSDK)","live.hms.video.virtualbackground.HMSVirtualBackground.HMSVirtualBackground"]},{"name":"fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline","description":"live.hms.video.virtualbackground.createPipeLine","location":"virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html","searchKeys":["createPipeLine","fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline","live.hms.video.virtualbackground.createPipeLine"]},{"name":"fun exceptionToHmsException(description: String, throwable: Throwable? = null): HMSException","description":"live.hms.video.virtualbackground.exceptionToHmsException","location":"virtualBackground/live.hms.video.virtualbackground/exception-to-hms-exception.html","searchKeys":["exceptionToHmsException","fun exceptionToHmsException(description: String, throwable: Throwable? = null): HMSException","live.hms.video.virtualbackground.exceptionToHmsException"]},{"name":"object Companion","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.video.virtualbackground.HMSVirtualBackground.Companion"]},{"name":"object MainThreadExecutor","description":"live.hms.video.virtualbackground.MainThreadExecutor","location":"virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/index.html","searchKeys":["MainThreadExecutor","object MainThreadExecutor","live.hms.video.virtualbackground.MainThreadExecutor"]},{"name":"open override fun disableEffects()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.disableEffects","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/disable-effects.html","searchKeys":["disableEffects","open override fun disableEffects()","live.hms.video.virtualbackground.HMSVirtualBackground.disableEffects"]},{"name":"open override fun enableBackground(bitmap: Bitmap)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.enableBackground","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/enable-background.html","searchKeys":["enableBackground","open override fun enableBackground(bitmap: Bitmap)","live.hms.video.virtualbackground.HMSVirtualBackground.enableBackground"]},{"name":"open override fun enableBlur(blurPercentage: Int)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.enableBlur","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/enable-blur.html","searchKeys":["enableBlur","open override fun enableBlur(blurPercentage: Int)","live.hms.video.virtualbackground.HMSVirtualBackground.enableBlur"]},{"name":"open override fun getCurrentBlurPercentage(): Int","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getCurrentBlurPercentage","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-current-blur-percentage.html","searchKeys":["getCurrentBlurPercentage","open override fun getCurrentBlurPercentage(): Int","live.hms.video.virtualbackground.HMSVirtualBackground.getCurrentBlurPercentage"]},{"name":"open override fun getName(): String","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getName","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.video.virtualbackground.HMSVirtualBackground.getName"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.video.virtualbackground.HMSVirtualBackground.getPluginType","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.video.virtualbackground.HMSVirtualBackground.getPluginType"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.video.virtualbackground.HMSVirtualBackground.isSupported","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.video.virtualbackground.HMSVirtualBackground.isSupported"]},{"name":"open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.processVideoFrame","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(inputVideoFrame: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.video.virtualbackground.HMSVirtualBackground.processVideoFrame"]},{"name":"open override fun setKey(key: String)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.setKey","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/set-key.html","searchKeys":["setKey","open override fun setKey(key: String)","live.hms.video.virtualbackground.HMSVirtualBackground.setKey"]},{"name":"open override fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","description":"live.hms.video.virtualbackground.HMSVirtualBackground.setVideoFrameInfoListener","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/set-video-frame-info-listener.html","searchKeys":["setVideoFrameInfoListener","open override fun setVideoFrameInfoListener(listener: VideoFrameInfoListener)","live.hms.video.virtualbackground.HMSVirtualBackground.setVideoFrameInfoListener"]},{"name":"open override fun stop()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.stop","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/stop.html","searchKeys":["stop","open override fun stop()","live.hms.video.virtualbackground.HMSVirtualBackground.stop"]},{"name":"open suspend override fun init()","description":"live.hms.video.virtualbackground.HMSVirtualBackground.init","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/init.html","searchKeys":["init","open suspend override fun init()","live.hms.video.virtualbackground.HMSVirtualBackground.init"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.MIN_API_LEVEL","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.MIN_API_LEVEL"]},{"name":"var textures: IntArray","description":"live.hms.video.virtualbackground.HMSVirtualBackground.Companion.textures","location":"virtualBackground/live.hms.video.virtualbackground/-h-m-s-virtual-background/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.video.virtualbackground.HMSVirtualBackground.Companion.textures"]},{"name":"BRIGHTNESS","description":"live.hms.videofilters.VideoFilter.BRIGHTNESS","location":"video-filters/live.hms.videofilters/-video-filter/-b-r-i-g-h-t-n-e-s-s/index.html","searchKeys":["BRIGHTNESS","BRIGHTNESS","live.hms.videofilters.VideoFilter.BRIGHTNESS"]},{"name":"CONTRAST","description":"live.hms.videofilters.VideoFilter.CONTRAST","location":"video-filters/live.hms.videofilters/-video-filter/-c-o-n-t-r-a-s-t/index.html","searchKeys":["CONTRAST","CONTRAST","live.hms.videofilters.VideoFilter.CONTRAST"]},{"name":"REDNESS","description":"live.hms.videofilters.VideoFilter.REDNESS","location":"video-filters/live.hms.videofilters/-video-filter/-r-e-d-n-e-s-s/index.html","searchKeys":["REDNESS","REDNESS","live.hms.videofilters.VideoFilter.REDNESS"]},{"name":"SHARPNESS","description":"live.hms.videofilters.VideoFilter.SHARPNESS","location":"video-filters/live.hms.videofilters/-video-filter/-s-h-a-r-p-n-e-s-s/index.html","searchKeys":["SHARPNESS","SHARPNESS","live.hms.videofilters.VideoFilter.SHARPNESS"]},{"name":"SMOOTHHNESS","description":"live.hms.videofilters.VideoFilter.SMOOTHHNESS","location":"video-filters/live.hms.videofilters/-video-filter/-s-m-o-o-t-h-h-n-e-s-s/index.html","searchKeys":["SMOOTHHNESS","SMOOTHHNESS","live.hms.videofilters.VideoFilter.SMOOTHHNESS"]},{"name":"class HMSGPUImageFilter(currentUsedFilters: MutableMap) : GPUImageFilterGroup","description":"live.hms.videofilters.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html","searchKeys":["HMSGPUImageFilter","class HMSGPUImageFilter(currentUsedFilters: MutableMap) : GPUImageFilterGroup","live.hms.videofilters.HMSGPUImageFilter"]},{"name":"class HMSVideoFilter(hmsSdk: HMSSDK) : HMSVideoPlugin","description":"live.hms.videofilters.HMSVideoFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/index.html","searchKeys":["HMSVideoFilter","class HMSVideoFilter(hmsSdk: HMSSDK) : HMSVideoPlugin","live.hms.videofilters.HMSVideoFilter"]},{"name":"const val TAG: String","description":"live.hms.videofilters.HMSVideoFilter.Companion.TAG","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.videofilters.HMSVideoFilter.Companion.TAG"]},{"name":"enum VideoFilter","description":"live.hms.videofilters.VideoFilter","location":"video-filters/live.hms.videofilters/-video-filter/index.html","searchKeys":["VideoFilter","enum VideoFilter","live.hms.videofilters.VideoFilter"]},{"name":"fun HMSGPUImageFilter(currentUsedFilters: MutableMap)","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter.html","searchKeys":["HMSGPUImageFilter","fun HMSGPUImageFilter(currentUsedFilters: MutableMap)","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter"]},{"name":"fun HMSVideoFilter(hmsSdk: HMSSDK)","description":"live.hms.videofilters.HMSVideoFilter.HMSVideoFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-h-m-s-video-filter.html","searchKeys":["HMSVideoFilter","fun HMSVideoFilter(hmsSdk: HMSSDK)","live.hms.videofilters.HMSVideoFilter.HMSVideoFilter"]},{"name":"fun getBrightnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getBrightnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-brightness-progress.html","searchKeys":["getBrightnessProgress","fun getBrightnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getBrightnessProgress"]},{"name":"fun getContrastProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getContrastProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-contrast-progress.html","searchKeys":["getContrastProgress","fun getContrastProgress(): Float","live.hms.videofilters.HMSVideoFilter.getContrastProgress"]},{"name":"fun getGpuImage(): GPUImage?","description":"live.hms.videofilters.HMSVideoFilter.getGpuImage","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-gpu-image.html","searchKeys":["getGpuImage","fun getGpuImage(): GPUImage?","live.hms.videofilters.HMSVideoFilter.getGpuImage"]},{"name":"fun getRednessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getRednessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-redness-progress.html","searchKeys":["getRednessProgress","fun getRednessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getRednessProgress"]},{"name":"fun getSharpnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getSharpnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-sharpness-progress.html","searchKeys":["getSharpnessProgress","fun getSharpnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getSharpnessProgress"]},{"name":"fun getSmoothnessProgress(): Float","description":"live.hms.videofilters.HMSVideoFilter.getSmoothnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-smoothness-progress.html","searchKeys":["getSmoothnessProgress","fun getSmoothnessProgress(): Float","live.hms.videofilters.HMSVideoFilter.getSmoothnessProgress"]},{"name":"fun initFilters(currentUsedFilters: MutableMap): List","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.initFilters","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/init-filters.html","searchKeys":["initFilters","fun initFilters(currentUsedFilters: MutableMap): List","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.initFilters"]},{"name":"fun range(percentage: Int, start: Float, end: Float): Float","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.range","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/range.html","searchKeys":["range","fun range(percentage: Int, start: Float, end: Float): Float","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter.range"]},{"name":"fun setBrightness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setBrightness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-brightness.html","searchKeys":["setBrightness","fun setBrightness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setBrightness"]},{"name":"fun setBrightness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setBrightness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-brightness.html","searchKeys":["setBrightness","fun setBrightness(value: Float)","live.hms.videofilters.HMSVideoFilter.setBrightness"]},{"name":"fun setContrast(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setContrast","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-contrast.html","searchKeys":["setContrast","fun setContrast(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setContrast"]},{"name":"fun setContrast(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setContrast","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-contrast.html","searchKeys":["setContrast","fun setContrast(value: Float)","live.hms.videofilters.HMSVideoFilter.setContrast"]},{"name":"fun setRedness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setRedness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-redness.html","searchKeys":["setRedness","fun setRedness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setRedness"]},{"name":"fun setRedness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setRedness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-redness.html","searchKeys":["setRedness","fun setRedness(value: Float)","live.hms.videofilters.HMSVideoFilter.setRedness"]},{"name":"fun setSharpness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setSharpness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-sharpness.html","searchKeys":["setSharpness","fun setSharpness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setSharpness"]},{"name":"fun setSharpness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setSharpness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-sharpness.html","searchKeys":["setSharpness","fun setSharpness(value: Float)","live.hms.videofilters.HMSVideoFilter.setSharpness"]},{"name":"fun setSmoothness(progress: Int)","description":"live.hms.videofilters.HMSGPUImageFilter.setSmoothness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/set-smoothness.html","searchKeys":["setSmoothness","fun setSmoothness(progress: Int)","live.hms.videofilters.HMSGPUImageFilter.setSmoothness"]},{"name":"fun setSmoothness(value: Float)","description":"live.hms.videofilters.HMSVideoFilter.setSmoothness","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/set-smoothness.html","searchKeys":["setSmoothness","fun setSmoothness(value: Float)","live.hms.videofilters.HMSVideoFilter.setSmoothness"]},{"name":"object Companion","description":"live.hms.videofilters.HMSVideoFilter.Companion","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.videofilters.HMSVideoFilter.Companion"]},{"name":"object HMSGPUImageFilter","description":"live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/-h-m-s-g-p-u-image-filter/index.html","searchKeys":["HMSGPUImageFilter","object HMSGPUImageFilter","live.hms.videofilters.HMSGPUImageFilter.HMSGPUImageFilter"]},{"name":"open class GPUImageBeautyFilter : GPUImageFilter","description":"live.hms.videofilters.GPUImageBeautyFilter","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html","searchKeys":["GPUImageBeautyFilter","open class GPUImageBeautyFilter : GPUImageFilter","live.hms.videofilters.GPUImageBeautyFilter"]},{"name":"open fun GPUImageBeautyFilter()","description":"live.hms.videofilters.GPUImageBeautyFilter.GPUImageBeautyFilter","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-g-p-u-image-beauty-filter.html","searchKeys":["GPUImageBeautyFilter","open fun GPUImageBeautyFilter()","live.hms.videofilters.GPUImageBeautyFilter.GPUImageBeautyFilter"]},{"name":"open fun onInit()","description":"live.hms.videofilters.GPUImageBeautyFilter.onInit","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/on-init.html","searchKeys":["onInit","open fun onInit()","live.hms.videofilters.GPUImageBeautyFilter.onInit"]},{"name":"open fun onOutputSizeChanged(width: Int, height: Int)","description":"live.hms.videofilters.GPUImageBeautyFilter.onOutputSizeChanged","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/on-output-size-changed.html","searchKeys":["onOutputSizeChanged","open fun onOutputSizeChanged(width: Int, height: Int)","live.hms.videofilters.GPUImageBeautyFilter.onOutputSizeChanged"]},{"name":"open fun setBeautyLevel(beautyLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setBeautyLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-beauty-level.html","searchKeys":["setBeautyLevel","open fun setBeautyLevel(beautyLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setBeautyLevel"]},{"name":"open fun setBrightLevel(brightLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setBrightLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-bright-level.html","searchKeys":["setBrightLevel","open fun setBrightLevel(brightLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setBrightLevel"]},{"name":"open fun setParams(beauty: Float, tone: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setParams","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-params.html","searchKeys":["setParams","open fun setParams(beauty: Float, tone: Float)","live.hms.videofilters.GPUImageBeautyFilter.setParams"]},{"name":"open fun setToneLevel(toneLevel: Float)","description":"live.hms.videofilters.GPUImageBeautyFilter.setToneLevel","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/set-tone-level.html","searchKeys":["setToneLevel","open fun setToneLevel(toneLevel: Float)","live.hms.videofilters.GPUImageBeautyFilter.setToneLevel"]},{"name":"open fun valueOf(name: String): VideoFilter","description":"live.hms.videofilters.VideoFilter.valueOf","location":"video-filters/live.hms.videofilters/-video-filter/value-of.html","searchKeys":["valueOf","open fun valueOf(name: String): VideoFilter","live.hms.videofilters.VideoFilter.valueOf"]},{"name":"open fun values(): Array","description":"live.hms.videofilters.VideoFilter.values","location":"video-filters/live.hms.videofilters/-video-filter/values.html","searchKeys":["values","open fun values(): Array","live.hms.videofilters.VideoFilter.values"]},{"name":"open override fun getName(): String","description":"live.hms.videofilters.HMSVideoFilter.getName","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-name.html","searchKeys":["getName","open override fun getName(): String","live.hms.videofilters.HMSVideoFilter.getName"]},{"name":"open override fun getPluginType(): HMSVideoPluginType","description":"live.hms.videofilters.HMSVideoFilter.getPluginType","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/get-plugin-type.html","searchKeys":["getPluginType","open override fun getPluginType(): HMSVideoPluginType","live.hms.videofilters.HMSVideoFilter.getPluginType"]},{"name":"open override fun isSupported(): Boolean","description":"live.hms.videofilters.HMSVideoFilter.isSupported","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/is-supported.html","searchKeys":["isSupported","open override fun isSupported(): Boolean","live.hms.videofilters.HMSVideoFilter.isSupported"]},{"name":"open override fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","description":"live.hms.videofilters.HMSVideoFilter.processVideoFrame","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/process-video-frame.html","searchKeys":["processVideoFrame","open override fun processVideoFrame(input: VideoFrame, outputListener: HMSPluginResultListener?, skipProcessing: Boolean?)","live.hms.videofilters.HMSVideoFilter.processVideoFrame"]},{"name":"open override fun stop()","description":"live.hms.videofilters.HMSVideoFilter.stop","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/stop.html","searchKeys":["stop","open override fun stop()","live.hms.videofilters.HMSVideoFilter.stop"]},{"name":"open suspend override fun init()","description":"live.hms.videofilters.HMSVideoFilter.init","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/init.html","searchKeys":["init","open suspend override fun init()","live.hms.videofilters.HMSVideoFilter.init"]},{"name":"val BILATERAL_FRAGMENT_SHADER: String = \" varying highp vec2 textureCoordinate;\n\n uniform sampler2D inputImageTexture;\n\n uniform highp vec2 singleStepOffset;\n uniform highp vec4 params;\n uniform highp float brightness;\n\n const highp vec3 W = vec3(0.299, 0.587, 0.114);\n const highp mat3 saturateMatrix = mat3(\n 1.1102, -0.0598, -0.061,\n -0.0774, 1.0826, -0.1186,\n -0.0228, -0.0228, 1.1772);\n highp vec2 blurCoordinates[24];\n\n highp float hardLight(highp float color) {\n if (color <= 0.5)\n color = color * color * 2.0;\n else\n color = 1.0 - ((1.0 - color)*(1.0 - color) * 2.0);\n return color;\n}\n\n void main(){\n highp vec3 centralColor = texture2D(inputImageTexture, textureCoordinate).rgb;\n blurCoordinates[0] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -10.0);\n blurCoordinates[1] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 10.0);\n blurCoordinates[2] = textureCoordinate.xy + singleStepOffset * vec2(-10.0, 0.0);\n blurCoordinates[3] = textureCoordinate.xy + singleStepOffset * vec2(10.0, 0.0);\n blurCoordinates[4] = textureCoordinate.xy + singleStepOffset * vec2(5.0, -8.0);\n blurCoordinates[5] = textureCoordinate.xy + singleStepOffset * vec2(5.0, 8.0);\n blurCoordinates[6] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, 8.0);\n blurCoordinates[7] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, -8.0);\n blurCoordinates[8] = textureCoordinate.xy + singleStepOffset * vec2(8.0, -5.0);\n blurCoordinates[9] = textureCoordinate.xy + singleStepOffset * vec2(8.0, 5.0);\n blurCoordinates[10] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, 5.0);\n blurCoordinates[11] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, -5.0);\n blurCoordinates[12] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -6.0);\n blurCoordinates[13] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 6.0);\n blurCoordinates[14] = textureCoordinate.xy + singleStepOffset * vec2(6.0, 0.0);\n blurCoordinates[15] = textureCoordinate.xy + singleStepOffset * vec2(-6.0, 0.0);\n blurCoordinates[16] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, -4.0);\n blurCoordinates[17] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, 4.0);\n blurCoordinates[18] = textureCoordinate.xy + singleStepOffset * vec2(4.0, -4.0);\n blurCoordinates[19] = textureCoordinate.xy + singleStepOffset * vec2(4.0, 4.0);\n blurCoordinates[20] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, -2.0);\n blurCoordinates[21] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, 2.0);\n blurCoordinates[22] = textureCoordinate.xy + singleStepOffset * vec2(2.0, -2.0);\n blurCoordinates[23] = textureCoordinate.xy + singleStepOffset * vec2(2.0, 2.0);\n\n highp float sampleColor = centralColor.g * 22.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[0]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[1]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[2]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[3]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[4]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[5]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[6]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[7]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[8]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[9]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[10]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[11]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[12]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[13]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[14]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[15]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[16]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[17]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[18]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[19]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[20]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[21]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[22]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[23]).g * 3.0;\n\n sampleColor = sampleColor / 62.0;\n\n highp float highPass = centralColor.g - sampleColor + 0.5;\n\n for (int i = 0; i < 5; i++) {\n highPass = hardLight(highPass);\n }\n highp float lumance = dot(centralColor, W);\n\n highp float alpha = pow(lumance, params.r);\n\n highp vec3 smoothColor = centralColor + (centralColor-vec3(highPass))*alpha*0.1;\n\n smoothColor.r = clamp(pow(smoothColor.r, params.g), 0.0, 1.0);\n smoothColor.g = clamp(pow(smoothColor.g, params.g), 0.0, 1.0);\n smoothColor.b = clamp(pow(smoothColor.b, params.g), 0.0, 1.0);\n\n highp vec3 lvse = vec3(1.0)-(vec3(1.0)-smoothColor)*(vec3(1.0)-centralColor);\n highp vec3 bianliang = max(smoothColor, centralColor);\n highp vec3 rouguang = 2.0*centralColor*smoothColor + centralColor*centralColor - 2.0*centralColor*centralColor*smoothColor;\n\n gl_FragColor = vec4(mix(centralColor, lvse, alpha), 1.0);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, bianliang, alpha);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, rouguang, params.b);\n\n highp vec3 satcolor = gl_FragColor.rgb * saturateMatrix;\n gl_FragColor.rgb = mix(gl_FragColor.rgb, satcolor, params.a);\n gl_FragColor.rgb = vec3(gl_FragColor.rgb + vec3(brightness));\n}\"","description":"live.hms.videofilters.GPUImageBeautyFilter.BILATERAL_FRAGMENT_SHADER","location":"video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html","searchKeys":["BILATERAL_FRAGMENT_SHADER","val BILATERAL_FRAGMENT_SHADER: String = \" varying highp vec2 textureCoordinate;\n\n uniform sampler2D inputImageTexture;\n\n uniform highp vec2 singleStepOffset;\n uniform highp vec4 params;\n uniform highp float brightness;\n\n const highp vec3 W = vec3(0.299, 0.587, 0.114);\n const highp mat3 saturateMatrix = mat3(\n 1.1102, -0.0598, -0.061,\n -0.0774, 1.0826, -0.1186,\n -0.0228, -0.0228, 1.1772);\n highp vec2 blurCoordinates[24];\n\n highp float hardLight(highp float color) {\n if (color <= 0.5)\n color = color * color * 2.0;\n else\n color = 1.0 - ((1.0 - color)*(1.0 - color) * 2.0);\n return color;\n}\n\n void main(){\n highp vec3 centralColor = texture2D(inputImageTexture, textureCoordinate).rgb;\n blurCoordinates[0] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -10.0);\n blurCoordinates[1] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 10.0);\n blurCoordinates[2] = textureCoordinate.xy + singleStepOffset * vec2(-10.0, 0.0);\n blurCoordinates[3] = textureCoordinate.xy + singleStepOffset * vec2(10.0, 0.0);\n blurCoordinates[4] = textureCoordinate.xy + singleStepOffset * vec2(5.0, -8.0);\n blurCoordinates[5] = textureCoordinate.xy + singleStepOffset * vec2(5.0, 8.0);\n blurCoordinates[6] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, 8.0);\n blurCoordinates[7] = textureCoordinate.xy + singleStepOffset * vec2(-5.0, -8.0);\n blurCoordinates[8] = textureCoordinate.xy + singleStepOffset * vec2(8.0, -5.0);\n blurCoordinates[9] = textureCoordinate.xy + singleStepOffset * vec2(8.0, 5.0);\n blurCoordinates[10] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, 5.0);\n blurCoordinates[11] = textureCoordinate.xy + singleStepOffset * vec2(-8.0, -5.0);\n blurCoordinates[12] = textureCoordinate.xy + singleStepOffset * vec2(0.0, -6.0);\n blurCoordinates[13] = textureCoordinate.xy + singleStepOffset * vec2(0.0, 6.0);\n blurCoordinates[14] = textureCoordinate.xy + singleStepOffset * vec2(6.0, 0.0);\n blurCoordinates[15] = textureCoordinate.xy + singleStepOffset * vec2(-6.0, 0.0);\n blurCoordinates[16] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, -4.0);\n blurCoordinates[17] = textureCoordinate.xy + singleStepOffset * vec2(-4.0, 4.0);\n blurCoordinates[18] = textureCoordinate.xy + singleStepOffset * vec2(4.0, -4.0);\n blurCoordinates[19] = textureCoordinate.xy + singleStepOffset * vec2(4.0, 4.0);\n blurCoordinates[20] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, -2.0);\n blurCoordinates[21] = textureCoordinate.xy + singleStepOffset * vec2(-2.0, 2.0);\n blurCoordinates[22] = textureCoordinate.xy + singleStepOffset * vec2(2.0, -2.0);\n blurCoordinates[23] = textureCoordinate.xy + singleStepOffset * vec2(2.0, 2.0);\n\n highp float sampleColor = centralColor.g * 22.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[0]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[1]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[2]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[3]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[4]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[5]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[6]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[7]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[8]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[9]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[10]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[11]).g;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[12]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[13]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[14]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[15]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[16]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[17]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[18]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[19]).g * 2.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[20]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[21]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[22]).g * 3.0;\n sampleColor += texture2D(inputImageTexture, blurCoordinates[23]).g * 3.0;\n\n sampleColor = sampleColor / 62.0;\n\n highp float highPass = centralColor.g - sampleColor + 0.5;\n\n for (int i = 0; i < 5; i++) {\n highPass = hardLight(highPass);\n }\n highp float lumance = dot(centralColor, W);\n\n highp float alpha = pow(lumance, params.r);\n\n highp vec3 smoothColor = centralColor + (centralColor-vec3(highPass))*alpha*0.1;\n\n smoothColor.r = clamp(pow(smoothColor.r, params.g), 0.0, 1.0);\n smoothColor.g = clamp(pow(smoothColor.g, params.g), 0.0, 1.0);\n smoothColor.b = clamp(pow(smoothColor.b, params.g), 0.0, 1.0);\n\n highp vec3 lvse = vec3(1.0)-(vec3(1.0)-smoothColor)*(vec3(1.0)-centralColor);\n highp vec3 bianliang = max(smoothColor, centralColor);\n highp vec3 rouguang = 2.0*centralColor*smoothColor + centralColor*centralColor - 2.0*centralColor*centralColor*smoothColor;\n\n gl_FragColor = vec4(mix(centralColor, lvse, alpha), 1.0);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, bianliang, alpha);\n gl_FragColor.rgb = mix(gl_FragColor.rgb, rouguang, params.b);\n\n highp vec3 satcolor = gl_FragColor.rgb * saturateMatrix;\n gl_FragColor.rgb = mix(gl_FragColor.rgb, satcolor, params.a);\n gl_FragColor.rgb = vec3(gl_FragColor.rgb + vec3(brightness));\n}\"","live.hms.videofilters.GPUImageBeautyFilter.BILATERAL_FRAGMENT_SHADER"]},{"name":"val beautyFilter: GPUImageBeautyFilter","description":"live.hms.videofilters.HMSVideoFilter.beautyFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/beauty-filter.html","searchKeys":["beautyFilter","val beautyFilter: GPUImageBeautyFilter","live.hms.videofilters.HMSVideoFilter.beautyFilter"]},{"name":"val currentUsedFilters: MutableMap","description":"live.hms.videofilters.HMSVideoFilter.currentUsedFilters","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/current-used-filters.html","searchKeys":["currentUsedFilters","val currentUsedFilters: MutableMap","live.hms.videofilters.HMSVideoFilter.currentUsedFilters"]},{"name":"val sharpenFilter: GPUImageSharpenFilter","description":"live.hms.videofilters.HMSVideoFilter.sharpenFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/sharpen-filter.html","searchKeys":["sharpenFilter","val sharpenFilter: GPUImageSharpenFilter","live.hms.videofilters.HMSVideoFilter.sharpenFilter"]},{"name":"var MIN_API_LEVEL: Int = 21","description":"live.hms.videofilters.HMSVideoFilter.Companion.MIN_API_LEVEL","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/-m-i-n_-a-p-i_-l-e-v-e-l.html","searchKeys":["MIN_API_LEVEL","var MIN_API_LEVEL: Int = 21","live.hms.videofilters.HMSVideoFilter.Companion.MIN_API_LEVEL"]},{"name":"var brightnessProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.brightnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/brightness-progress.html","searchKeys":["brightnessProgress","var brightnessProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.brightnessProgress"]},{"name":"var contrastProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.contrastProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/contrast-progress.html","searchKeys":["contrastProgress","var contrastProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.contrastProgress"]},{"name":"var hmsFilter: HMSGPUImageFilter? = null","description":"live.hms.videofilters.HMSVideoFilter.hmsFilter","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/hms-filter.html","searchKeys":["hmsFilter","var hmsFilter: HMSGPUImageFilter? = null","live.hms.videofilters.HMSVideoFilter.hmsFilter"]},{"name":"var redness: Int = 0","description":"live.hms.videofilters.HMSGPUImageFilter.redness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/redness.html","searchKeys":["redness","var redness: Int = 0","live.hms.videofilters.HMSGPUImageFilter.redness"]},{"name":"var sharpnessProgress: Int = 50","description":"live.hms.videofilters.HMSGPUImageFilter.sharpnessProgress","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/sharpness-progress.html","searchKeys":["sharpnessProgress","var sharpnessProgress: Int = 50","live.hms.videofilters.HMSGPUImageFilter.sharpnessProgress"]},{"name":"var smoothness: Int = 0","description":"live.hms.videofilters.HMSGPUImageFilter.smoothness","location":"video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/smoothness.html","searchKeys":["smoothness","var smoothness: Int = 0","live.hms.videofilters.HMSGPUImageFilter.smoothness"]},{"name":"var textures: IntArray","description":"live.hms.videofilters.HMSVideoFilter.Companion.textures","location":"video-filters/live.hms.videofilters/-h-m-s-video-filter/-companion/textures.html","searchKeys":["textures","var textures: IntArray","live.hms.videofilters.HMSVideoFilter.Companion.textures"]},{"name":"abstract fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.addPlayerEventListener","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/add-player-event-listener.html","searchKeys":["addPlayerEventListener","abstract fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","live.hms.hls_player.HmsHlsPlayerInterface.addPlayerEventListener"]},{"name":"abstract fun getCurrentHmsHlsLayer(): HmsHlsLayer?","description":"live.hms.hls_player.HmsHlsPlayerInterface.getCurrentHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-current-hms-hls-layer.html","searchKeys":["getCurrentHmsHlsLayer","abstract fun getCurrentHmsHlsLayer(): HmsHlsLayer?","live.hms.hls_player.HmsHlsPlayerInterface.getCurrentHmsHlsLayer"]},{"name":"abstract fun getHmsHlsLayers(): List","description":"live.hms.hls_player.HmsHlsPlayerInterface.getHmsHlsLayers","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-hms-hls-layers.html","searchKeys":["getHmsHlsLayers","abstract fun getHmsHlsLayers(): List","live.hms.hls_player.HmsHlsPlayerInterface.getHmsHlsLayers"]},{"name":"abstract fun getLastError(): HmsHlsException?","description":"live.hms.hls_player.HmsHlsPlayerInterface.getLastError","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/get-last-error.html","searchKeys":["getLastError","abstract fun getLastError(): HmsHlsException?","live.hms.hls_player.HmsHlsPlayerInterface.getLastError"]},{"name":"abstract fun pause()","description":"live.hms.hls_player.HmsHlsPlayerInterface.pause","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/pause.html","searchKeys":["pause","abstract fun pause()","live.hms.hls_player.HmsHlsPlayerInterface.pause"]},{"name":"abstract fun play(url: String)","description":"live.hms.hls_player.HmsHlsPlayerInterface.play","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/play.html","searchKeys":["play","abstract fun play(url: String)","live.hms.hls_player.HmsHlsPlayerInterface.play"]},{"name":"abstract fun resume()","description":"live.hms.hls_player.HmsHlsPlayerInterface.resume","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/resume.html","searchKeys":["resume","abstract fun resume()","live.hms.hls_player.HmsHlsPlayerInterface.resume"]},{"name":"abstract fun seekBackward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekBackward","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-backward.html","searchKeys":["seekBackward","abstract fun seekBackward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayerInterface.seekBackward"]},{"name":"abstract fun seekForward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekForward","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-forward.html","searchKeys":["seekForward","abstract fun seekForward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayerInterface.seekForward"]},{"name":"abstract fun seekToLivePosition()","description":"live.hms.hls_player.HmsHlsPlayerInterface.seekToLivePosition","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/seek-to-live-position.html","searchKeys":["seekToLivePosition","abstract fun seekToLivePosition()","live.hms.hls_player.HmsHlsPlayerInterface.seekToLivePosition"]},{"name":"abstract fun setAnalytics(analytics: HMSSDK?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setAnalytics","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-analytics.html","searchKeys":["setAnalytics","abstract fun setAnalytics(analytics: HMSSDK?)","live.hms.hls_player.HmsHlsPlayerInterface.setAnalytics"]},{"name":"abstract fun setHmsHlsLayer(hlsStreamVariant: HmsHlsLayer)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-hms-hls-layer.html","searchKeys":["setHmsHlsLayer","abstract fun setHmsHlsLayer(hlsStreamVariant: HmsHlsLayer)","live.hms.hls_player.HmsHlsPlayerInterface.setHmsHlsLayer"]},{"name":"abstract fun setStatsMonitor(statsListener: PlayerStatsListener?)","description":"live.hms.hls_player.HmsHlsPlayerInterface.setStatsMonitor","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/set-stats-monitor.html","searchKeys":["setStatsMonitor","abstract fun setStatsMonitor(statsListener: PlayerStatsListener?)","live.hms.hls_player.HmsHlsPlayerInterface.setStatsMonitor"]},{"name":"abstract fun stop()","description":"live.hms.hls_player.HmsHlsPlayerInterface.stop","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/stop.html","searchKeys":["stop","abstract fun stop()","live.hms.hls_player.HmsHlsPlayerInterface.stop"]},{"name":"abstract var volume: Int","description":"live.hms.hls_player.HmsHlsPlayerInterface.volume","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/volume.html","searchKeys":["volume","abstract var volume: Int","live.hms.hls_player.HmsHlsPlayerInterface.volume"]},{"name":"buffering","description":"live.hms.hls_player.HmsHlsPlaybackState.buffering","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/buffering/index.html","searchKeys":["buffering","buffering","live.hms.hls_player.HmsHlsPlaybackState.buffering"]},{"name":"class HlsMetadataHandler(val exoPlayer: ExoPlayer, val listener: (HmsHlsCue) -> Unit)","description":"live.hms.hls_player.HlsMetadataHandler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/index.html","searchKeys":["HlsMetadataHandler","class HlsMetadataHandler(val exoPlayer: ExoPlayer, val listener: (HmsHlsCue) -> Unit)","live.hms.hls_player.HlsMetadataHandler"]},{"name":"class HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null) : HmsHlsPlayerInterface","description":"live.hms.hls_player.HmsHlsPlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/index.html","searchKeys":["HmsHlsPlayer","class HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null) : HmsHlsPlayerInterface","live.hms.hls_player.HmsHlsPlayer"]},{"name":"class MetadataMatcher","description":"live.hms.hls_player.MetadataMatcher","location":"hls-player/live.hms.hls_player/-metadata-matcher/index.html","searchKeys":["MetadataMatcher","class MetadataMatcher","live.hms.hls_player.MetadataMatcher"]},{"name":"const val TAG: String","description":"live.hms.hls_player.HlsMetadataHandler.Companion.TAG","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-companion/-t-a-g.html","searchKeys":["TAG","const val TAG: String","live.hms.hls_player.HlsMetadataHandler.Companion.TAG"]},{"name":"data class HmsHlsCue(val startDate: Date, val endDate: Date?, val payloadval: String?, val id: String? = null)","description":"live.hms.hls_player.HmsHlsCue","location":"hls-player/live.hms.hls_player/-hms-hls-cue/index.html","searchKeys":["HmsHlsCue","data class HmsHlsCue(val startDate: Date, val endDate: Date?, val payloadval: String?, val id: String? = null)","live.hms.hls_player.HmsHlsCue"]},{"name":"data class HmsHlsException(val error: PlaybackException)","description":"live.hms.hls_player.HmsHlsException","location":"hls-player/live.hms.hls_player/-hms-hls-exception/index.html","searchKeys":["HmsHlsException","data class HmsHlsException(val error: PlaybackException)","live.hms.hls_player.HmsHlsException"]},{"name":"data class LayerInfo : HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/index.html","searchKeys":["LayerInfo","data class LayerInfo : HmsHlsLayer","live.hms.hls_player.HmsHlsLayer.LayerInfo"]},{"name":"data class LocalMetaDataModel(val payload: String, val duration: Long, var startTime: Long = 0, var id: String? = null)","description":"live.hms.hls_player.LocalMetaDataModel","location":"hls-player/live.hms.hls_player/-local-meta-data-model/index.html","searchKeys":["LocalMetaDataModel","data class LocalMetaDataModel(val payload: String, val duration: Long, var startTime: Long = 0, var id: String? = null)","live.hms.hls_player.LocalMetaDataModel"]},{"name":"enum HmsHlsPlaybackState : Enum ","description":"live.hms.hls_player.HmsHlsPlaybackState","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/index.html","searchKeys":["HmsHlsPlaybackState","enum HmsHlsPlaybackState : Enum ","live.hms.hls_player.HmsHlsPlaybackState"]},{"name":"failed","description":"live.hms.hls_player.HmsHlsPlaybackState.failed","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/failed/index.html","searchKeys":["failed","failed","live.hms.hls_player.HmsHlsPlaybackState.failed"]},{"name":"fun HlsMetadataHandler(exoPlayer: ExoPlayer, listener: (HmsHlsCue) -> Unit)","description":"live.hms.hls_player.HlsMetadataHandler.HlsMetadataHandler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-hls-metadata-handler.html","searchKeys":["HlsMetadataHandler","fun HlsMetadataHandler(exoPlayer: ExoPlayer, listener: (HmsHlsCue) -> Unit)","live.hms.hls_player.HlsMetadataHandler.HlsMetadataHandler"]},{"name":"fun HmsHlsCue(startDate: Date, endDate: Date?, payloadval: String?, id: String? = null)","description":"live.hms.hls_player.HmsHlsCue.HmsHlsCue","location":"hls-player/live.hms.hls_player/-hms-hls-cue/-hms-hls-cue.html","searchKeys":["HmsHlsCue","fun HmsHlsCue(startDate: Date, endDate: Date?, payloadval: String?, id: String? = null)","live.hms.hls_player.HmsHlsCue.HmsHlsCue"]},{"name":"fun HmsHlsException(error: PlaybackException)","description":"live.hms.hls_player.HmsHlsException.HmsHlsException","location":"hls-player/live.hms.hls_player/-hms-hls-exception/-hms-hls-exception.html","searchKeys":["HmsHlsException","fun HmsHlsException(error: PlaybackException)","live.hms.hls_player.HmsHlsException.HmsHlsException"]},{"name":"fun HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null)","description":"live.hms.hls_player.HmsHlsPlayer.HmsHlsPlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/-hms-hls-player.html","searchKeys":["HmsHlsPlayer","fun HmsHlsPlayer(context: Context, hmssdk: HMSSDK? = null)","live.hms.hls_player.HmsHlsPlayer.HmsHlsPlayer"]},{"name":"fun LocalMetaDataModel(payload: String, duration: Long, startTime: Long = 0, id: String? = null)","description":"live.hms.hls_player.LocalMetaDataModel.LocalMetaDataModel","location":"hls-player/live.hms.hls_player/-local-meta-data-model/-local-meta-data-model.html","searchKeys":["LocalMetaDataModel","fun LocalMetaDataModel(payload: String, duration: Long, startTime: Long = 0, id: String? = null)","live.hms.hls_player.LocalMetaDataModel.LocalMetaDataModel"]},{"name":"fun MetadataMatcher()","description":"live.hms.hls_player.MetadataMatcher.MetadataMatcher","location":"hls-player/live.hms.hls_player/-metadata-matcher/-metadata-matcher.html","searchKeys":["MetadataMatcher","fun MetadataMatcher()","live.hms.hls_player.MetadataMatcher.MetadataMatcher"]},{"name":"fun areClosedCaptionsSupported(): Boolean","description":"live.hms.hls_player.HmsHlsPlayer.areClosedCaptionsSupported","location":"hls-player/live.hms.hls_player/-hms-hls-player/are-closed-captions-supported.html","searchKeys":["areClosedCaptionsSupported","fun areClosedCaptionsSupported(): Boolean","live.hms.hls_player.HmsHlsPlayer.areClosedCaptionsSupported"]},{"name":"fun getNativePlayer(): ExoPlayer","description":"live.hms.hls_player.HmsHlsPlayer.getNativePlayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-native-player.html","searchKeys":["getNativePlayer","fun getNativePlayer(): ExoPlayer","live.hms.hls_player.HmsHlsPlayer.getNativePlayer"]},{"name":"fun mute(mute: Boolean)","description":"live.hms.hls_player.HmsHlsPlayer.mute","location":"hls-player/live.hms.hls_player/-hms-hls-player/mute.html","searchKeys":["mute","fun mute(mute: Boolean)","live.hms.hls_player.HmsHlsPlayer.mute"]},{"name":"fun sendError(hmsError: HmsHlsException)","description":"live.hms.hls_player.HmsHlsPlayer.sendError","location":"hls-player/live.hms.hls_player/-hms-hls-player/send-error.html","searchKeys":["sendError","fun sendError(hmsError: HmsHlsException)","live.hms.hls_player.HmsHlsPlayer.sendError"]},{"name":"fun start()","description":"live.hms.hls_player.HlsMetadataHandler.start","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/start.html","searchKeys":["start","fun start()","live.hms.hls_player.HlsMetadataHandler.start"]},{"name":"fun stop()","description":"live.hms.hls_player.HlsMetadataHandler.stop","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/stop.html","searchKeys":["stop","fun stop()","live.hms.hls_player.HlsMetadataHandler.stop"]},{"name":"fun valueOf(value: String): HmsHlsPlaybackState","description":"live.hms.hls_player.HmsHlsPlaybackState.valueOf","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/value-of.html","searchKeys":["valueOf","fun valueOf(value: String): HmsHlsPlaybackState","live.hms.hls_player.HmsHlsPlaybackState.valueOf"]},{"name":"fun values(): Array","description":"live.hms.hls_player.HmsHlsPlaybackState.values","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/values.html","searchKeys":["values","fun values(): Array","live.hms.hls_player.HmsHlsPlaybackState.values"]},{"name":"interface HmsHlsPlaybackEvents","description":"live.hms.hls_player.HmsHlsPlaybackEvents","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/index.html","searchKeys":["HmsHlsPlaybackEvents","interface HmsHlsPlaybackEvents","live.hms.hls_player.HmsHlsPlaybackEvents"]},{"name":"interface HmsHlsPlayerInterface","description":"live.hms.hls_player.HmsHlsPlayerInterface","location":"hls-player/live.hms.hls_player/-hms-hls-player-interface/index.html","searchKeys":["HmsHlsPlayerInterface","interface HmsHlsPlayerInterface","live.hms.hls_player.HmsHlsPlayerInterface"]},{"name":"object AUTO : HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer.AUTO","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-a-u-t-o/index.html","searchKeys":["AUTO","object AUTO : HmsHlsLayer","live.hms.hls_player.HmsHlsLayer.AUTO"]},{"name":"object Companion","description":"live.hms.hls_player.HlsMetadataHandler.Companion","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/-companion/index.html","searchKeys":["Companion","object Companion","live.hms.hls_player.HlsMetadataHandler.Companion"]},{"name":"open fun onCue(cue: HmsHlsCue)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onCue","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-cue.html","searchKeys":["onCue","open fun onCue(cue: HmsHlsCue)","live.hms.hls_player.HmsHlsPlaybackEvents.onCue"]},{"name":"open fun onPlaybackFailure(error: HmsHlsException)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackFailure","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-playback-failure.html","searchKeys":["onPlaybackFailure","open fun onPlaybackFailure(error: HmsHlsException)","live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackFailure"]},{"name":"open fun onPlaybackStateChanged(state: HmsHlsPlaybackState)","description":"live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackStateChanged","location":"hls-player/live.hms.hls_player/-hms-hls-playback-events/on-playback-state-changed.html","searchKeys":["onPlaybackStateChanged","open fun onPlaybackStateChanged(state: HmsHlsPlaybackState)","live.hms.hls_player.HmsHlsPlaybackEvents.onPlaybackStateChanged"]},{"name":"open override fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","description":"live.hms.hls_player.HmsHlsPlayer.addPlayerEventListener","location":"hls-player/live.hms.hls_player/-hms-hls-player/add-player-event-listener.html","searchKeys":["addPlayerEventListener","open override fun addPlayerEventListener(events: HmsHlsPlaybackEvents?)","live.hms.hls_player.HmsHlsPlayer.addPlayerEventListener"]},{"name":"open override fun getCurrentHmsHlsLayer(): HmsHlsLayer?","description":"live.hms.hls_player.HmsHlsPlayer.getCurrentHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-current-hms-hls-layer.html","searchKeys":["getCurrentHmsHlsLayer","open override fun getCurrentHmsHlsLayer(): HmsHlsLayer?","live.hms.hls_player.HmsHlsPlayer.getCurrentHmsHlsLayer"]},{"name":"open override fun getHmsHlsLayers(): List","description":"live.hms.hls_player.HmsHlsPlayer.getHmsHlsLayers","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-hms-hls-layers.html","searchKeys":["getHmsHlsLayers","open override fun getHmsHlsLayers(): List","live.hms.hls_player.HmsHlsPlayer.getHmsHlsLayers"]},{"name":"open override fun getLastError(): HmsHlsException?","description":"live.hms.hls_player.HmsHlsPlayer.getLastError","location":"hls-player/live.hms.hls_player/-hms-hls-player/get-last-error.html","searchKeys":["getLastError","open override fun getLastError(): HmsHlsException?","live.hms.hls_player.HmsHlsPlayer.getLastError"]},{"name":"open override fun pause()","description":"live.hms.hls_player.HmsHlsPlayer.pause","location":"hls-player/live.hms.hls_player/-hms-hls-player/pause.html","searchKeys":["pause","open override fun pause()","live.hms.hls_player.HmsHlsPlayer.pause"]},{"name":"open override fun play(url: String)","description":"live.hms.hls_player.HmsHlsPlayer.play","location":"hls-player/live.hms.hls_player/-hms-hls-player/play.html","searchKeys":["play","open override fun play(url: String)","live.hms.hls_player.HmsHlsPlayer.play"]},{"name":"open override fun resume()","description":"live.hms.hls_player.HmsHlsPlayer.resume","location":"hls-player/live.hms.hls_player/-hms-hls-player/resume.html","searchKeys":["resume","open override fun resume()","live.hms.hls_player.HmsHlsPlayer.resume"]},{"name":"open override fun seekBackward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayer.seekBackward","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-backward.html","searchKeys":["seekBackward","open override fun seekBackward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayer.seekBackward"]},{"name":"open override fun seekForward(value: Long, unit: TimeUnit)","description":"live.hms.hls_player.HmsHlsPlayer.seekForward","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-forward.html","searchKeys":["seekForward","open override fun seekForward(value: Long, unit: TimeUnit)","live.hms.hls_player.HmsHlsPlayer.seekForward"]},{"name":"open override fun seekToLivePosition()","description":"live.hms.hls_player.HmsHlsPlayer.seekToLivePosition","location":"hls-player/live.hms.hls_player/-hms-hls-player/seek-to-live-position.html","searchKeys":["seekToLivePosition","open override fun seekToLivePosition()","live.hms.hls_player.HmsHlsPlayer.seekToLivePosition"]},{"name":"open override fun setAnalytics(analytics: HMSSDK?)","description":"live.hms.hls_player.HmsHlsPlayer.setAnalytics","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-analytics.html","searchKeys":["setAnalytics","open override fun setAnalytics(analytics: HMSSDK?)","live.hms.hls_player.HmsHlsPlayer.setAnalytics"]},{"name":"open override fun setHmsHlsLayer(layer: HmsHlsLayer)","description":"live.hms.hls_player.HmsHlsPlayer.setHmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-hms-hls-layer.html","searchKeys":["setHmsHlsLayer","open override fun setHmsHlsLayer(layer: HmsHlsLayer)","live.hms.hls_player.HmsHlsPlayer.setHmsHlsLayer"]},{"name":"open override fun setStatsMonitor(statsListener: PlayerStatsListener?)","description":"live.hms.hls_player.HmsHlsPlayer.setStatsMonitor","location":"hls-player/live.hms.hls_player/-hms-hls-player/set-stats-monitor.html","searchKeys":["setStatsMonitor","open override fun setStatsMonitor(statsListener: PlayerStatsListener?)","live.hms.hls_player.HmsHlsPlayer.setStatsMonitor"]},{"name":"open override fun stop()","description":"live.hms.hls_player.HmsHlsPlayer.stop","location":"hls-player/live.hms.hls_player/-hms-hls-player/stop.html","searchKeys":["stop","open override fun stop()","live.hms.hls_player.HmsHlsPlayer.stop"]},{"name":"open override var volume: Int","description":"live.hms.hls_player.HmsHlsPlayer.volume","location":"hls-player/live.hms.hls_player/-hms-hls-player/volume.html","searchKeys":["volume","open override var volume: Int","live.hms.hls_player.HmsHlsPlayer.volume"]},{"name":"paused","description":"live.hms.hls_player.HmsHlsPlaybackState.paused","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/paused/index.html","searchKeys":["paused","paused","live.hms.hls_player.HmsHlsPlaybackState.paused"]},{"name":"playing","description":"live.hms.hls_player.HmsHlsPlaybackState.playing","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/playing/index.html","searchKeys":["playing","playing","live.hms.hls_player.HmsHlsPlaybackState.playing"]},{"name":"sealed class HmsHlsLayer","description":"live.hms.hls_player.HmsHlsLayer","location":"hls-player/live.hms.hls_player/-hms-hls-layer/index.html","searchKeys":["HmsHlsLayer","sealed class HmsHlsLayer","live.hms.hls_player.HmsHlsLayer"]},{"name":"stopped","description":"live.hms.hls_player.HmsHlsPlaybackState.stopped","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/stopped/index.html","searchKeys":["stopped","stopped","live.hms.hls_player.HmsHlsPlaybackState.stopped"]},{"name":"unknown","description":"live.hms.hls_player.HmsHlsPlaybackState.unknown","location":"hls-player/live.hms.hls_player/-hms-hls-playback-state/unknown/index.html","searchKeys":["unknown","unknown","live.hms.hls_player.HmsHlsPlaybackState.unknown"]},{"name":"val TAG: String","description":"live.hms.hls_player.HmsHlsPlayer.TAG","location":"hls-player/live.hms.hls_player/-hms-hls-player/-t-a-g.html","searchKeys":["TAG","val TAG: String","live.hms.hls_player.HmsHlsPlayer.TAG"]},{"name":"val bitrate: Int","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo.bitrate","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/bitrate.html","searchKeys":["bitrate","val bitrate: Int","live.hms.hls_player.HmsHlsLayer.LayerInfo.bitrate"]},{"name":"val duration: Long","description":"live.hms.hls_player.LocalMetaDataModel.duration","location":"hls-player/live.hms.hls_player/-local-meta-data-model/duration.html","searchKeys":["duration","val duration: Long","live.hms.hls_player.LocalMetaDataModel.duration"]},{"name":"val endDate: Date?","description":"live.hms.hls_player.HmsHlsCue.endDate","location":"hls-player/live.hms.hls_player/-hms-hls-cue/end-date.html","searchKeys":["endDate","val endDate: Date?","live.hms.hls_player.HmsHlsCue.endDate"]},{"name":"val error: PlaybackException","description":"live.hms.hls_player.HmsHlsException.error","location":"hls-player/live.hms.hls_player/-hms-hls-exception/error.html","searchKeys":["error","val error: PlaybackException","live.hms.hls_player.HmsHlsException.error"]},{"name":"val exoPlayer: ExoPlayer","description":"live.hms.hls_player.HlsMetadataHandler.exoPlayer","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/exo-player.html","searchKeys":["exoPlayer","val exoPlayer: ExoPlayer","live.hms.hls_player.HlsMetadataHandler.exoPlayer"]},{"name":"val id: String? = null","description":"live.hms.hls_player.HmsHlsCue.id","location":"hls-player/live.hms.hls_player/-hms-hls-cue/id.html","searchKeys":["id","val id: String? = null","live.hms.hls_player.HmsHlsCue.id"]},{"name":"val listener: (HmsHlsCue) -> Unit","description":"live.hms.hls_player.HlsMetadataHandler.listener","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/listener.html","searchKeys":["listener","val listener: (HmsHlsCue) -> Unit","live.hms.hls_player.HlsMetadataHandler.listener"]},{"name":"val pattern: Pattern","description":"live.hms.hls_player.MetadataMatcher.pattern","location":"hls-player/live.hms.hls_player/-metadata-matcher/pattern.html","searchKeys":["pattern","val pattern: Pattern","live.hms.hls_player.MetadataMatcher.pattern"]},{"name":"val payload: String","description":"live.hms.hls_player.LocalMetaDataModel.payload","location":"hls-player/live.hms.hls_player/-local-meta-data-model/payload.html","searchKeys":["payload","val payload: String","live.hms.hls_player.LocalMetaDataModel.payload"]},{"name":"val payloadval: String?","description":"live.hms.hls_player.HmsHlsCue.payloadval","location":"hls-player/live.hms.hls_player/-hms-hls-cue/payloadval.html","searchKeys":["payloadval","val payloadval: String?","live.hms.hls_player.HmsHlsCue.payloadval"]},{"name":"val resolution: HMSVideoResolution","description":"live.hms.hls_player.HmsHlsLayer.LayerInfo.resolution","location":"hls-player/live.hms.hls_player/-hms-hls-layer/-layer-info/resolution.html","searchKeys":["resolution","val resolution: HMSVideoResolution","live.hms.hls_player.HmsHlsLayer.LayerInfo.resolution"]},{"name":"val startDate: Date","description":"live.hms.hls_player.HmsHlsCue.startDate","location":"hls-player/live.hms.hls_player/-hms-hls-cue/start-date.html","searchKeys":["startDate","val startDate: Date","live.hms.hls_player.HmsHlsCue.startDate"]},{"name":"var MILLISECONDS_BEHIND_LIVE_IS_PAUSED: Long","description":"live.hms.hls_player.HmsHlsPlayer.MILLISECONDS_BEHIND_LIVE_IS_PAUSED","location":"hls-player/live.hms.hls_player/-hms-hls-player/-m-i-l-l-i-s-e-c-o-n-d-s_-b-e-h-i-n-d_-l-i-v-e_-i-s_-p-a-u-s-e-d.html","searchKeys":["MILLISECONDS_BEHIND_LIVE_IS_PAUSED","var MILLISECONDS_BEHIND_LIVE_IS_PAUSED: Long","live.hms.hls_player.HmsHlsPlayer.MILLISECONDS_BEHIND_LIVE_IS_PAUSED"]},{"name":"var handler: Handler? = null","description":"live.hms.hls_player.HlsMetadataHandler.handler","location":"hls-player/live.hms.hls_player/-hls-metadata-handler/handler.html","searchKeys":["handler","var handler: Handler? = null","live.hms.hls_player.HlsMetadataHandler.handler"]},{"name":"var id: String? = null","description":"live.hms.hls_player.LocalMetaDataModel.id","location":"hls-player/live.hms.hls_player/-local-meta-data-model/id.html","searchKeys":["id","var id: String? = null","live.hms.hls_player.LocalMetaDataModel.id"]},{"name":"var startTime: Long = 0","description":"live.hms.hls_player.LocalMetaDataModel.startTime","location":"hls-player/live.hms.hls_player/-local-meta-data-model/start-time.html","searchKeys":["startTime","var startTime: Long = 0","live.hms.hls_player.LocalMetaDataModel.startTime"]}] \ No newline at end of file diff --git a/public/api-reference/android/v2/stats/live.hms.stats/-player-events-collector/index.html b/public/api-reference/android/v2/stats/live.hms.stats/-player-events-collector/index.html index ac2105f4de..d5ca34f3f1 100644 --- a/public/api-reference/android/v2/stats/live.hms.stats/-player-events-collector/index.html +++ b/public/api-reference/android/v2/stats/live.hms.stats/-player-events-collector/index.html @@ -130,7 +130,7 @@

Functions

@@ -250,7 +250,7 @@

Functions

@@ -490,7 +490,7 @@

Functions

@@ -610,7 +610,7 @@

Functions

@@ -1060,7 +1060,7 @@

Functions

diff --git a/public/api-reference/android/v2/stats/navigation.html b/public/api-reference/android/v2/stats/navigation.html index 523fe0af2b..1d75a8957f 100644 --- a/public/api-reference/android/v2/stats/navigation.html +++ b/public/api-reference/android/v2/stats/navigation.html @@ -2112,107 +2112,112 @@ HMSSpeaker
-
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html index cbeda90016..49dfac8536 100644 --- a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html +++ b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/-b-i-l-a-t-e-r-a-l_-f-r-a-g-m-e-n-t_-s-h-a-d-e-r.html @@ -51,7 +51,7 @@

BILATERAL_FRAGMENT_SHADER

-
val BILATERAL_FRAGMENT_SHADER: String = " varying highp vec2 textureCoordinate; +
val BILATERAL_FRAGMENT_SHADER: String = " varying highp vec2 textureCoordinate; uniform sampler2D inputImageTexture; diff --git a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html index a53ae3a679..883cdd5d0d 100644 --- a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html +++ b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-g-p-u-image-beauty-filter/index.html @@ -83,7 +83,7 @@

Functions

@@ -188,7 +188,7 @@

Functions

-
open fun loadShader(file: String, context: Context): String
+
open fun loadShader(file: String, context: Context): String
@@ -218,7 +218,7 @@

Functions

-
open fun onDraw(textureId: Int, cubeBuffer: FloatBuffer, textureBuffer: FloatBuffer)
+
open fun onDraw(textureId: Int, cubeBuffer: FloatBuffer, textureBuffer: FloatBuffer)
@@ -340,7 +340,7 @@

Properties

-
val BILATERAL_FRAGMENT_SHADER: String = " varying highp vec2 textureCoordinate; +
val BILATERAL_FRAGMENT_SHADER: String = " varying highp vec2 textureCoordinate; uniform sampler2D inputImageTexture; @@ -474,7 +474,7 @@

Properties

-
val NO_FILTER_FRAGMENT_SHADER: String = "varying highp vec2 textureCoordinate; +
val NO_FILTER_FRAGMENT_SHADER: String = "varying highp vec2 textureCoordinate; uniform sampler2D inputImageTexture; @@ -496,7 +496,7 @@

Properties

-
val NO_FILTER_VERTEX_SHADER: String = "attribute vec4 position; +
val NO_FILTER_VERTEX_SHADER: String = "attribute vec4 position; attribute vec4 inputTextureCoordinate; varying vec2 textureCoordinate; diff --git a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html index b08acf9523..b04d9d1019 100644 --- a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html +++ b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-h-m-s-g-p-u-image-filter/index.html @@ -220,7 +220,7 @@

Functions

-
open override fun onDraw(textureId: Int, cubeBuffer: FloatBuffer, textureBuffer: FloatBuffer)
+
open override fun onDraw(textureId: Int, cubeBuffer: FloatBuffer, textureBuffer: FloatBuffer)
diff --git a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/index.html b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/index.html index 81f78d5b2b..1b24fb973c 100644 --- a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/index.html +++ b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/index.html @@ -143,7 +143,7 @@

Functions

-
open fun valueOf(name: String): VideoFilter
Returns the enum constant of this type with the specified name.
+
open fun valueOf(name: String): VideoFilter
Returns the enum constant of this type with the specified name.
diff --git a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/value-of.html b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/value-of.html index e4f00a54ee..1286fd5f70 100644 --- a/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/value-of.html +++ b/public/api-reference/android/v2/video-filters/live.hms.videofilters/-video-filter/value-of.html @@ -51,7 +51,7 @@

valueOf

-
open fun valueOf(name: String): VideoFilter

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Return

the enum constant with the specified name

Throws

if this enum type has no constant with the specified name

+
open fun valueOf(name: String): VideoFilter

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Return

the enum constant with the specified name

Throws

if this enum type has no constant with the specified name

-
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/api-reference/android/v2/videoview/navigation.html b/public/api-reference/android/v2/videoview/navigation.html index 523fe0af2b..1d75a8957f 100644 --- a/public/api-reference/android/v2/videoview/navigation.html +++ b/public/api-reference/android/v2/videoview/navigation.html @@ -2112,107 +2112,112 @@ HMSSpeaker
-
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/execute-on-main-thread-blocking.html b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/execute-on-main-thread-blocking.html new file mode 100644 index 0000000000..8f1cecf1cf --- /dev/null +++ b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/execute-on-main-thread-blocking.html @@ -0,0 +1,63 @@ + + + + + executeOnMainThreadBlocking + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

executeOnMainThreadBlocking

+
+
fun <T> executeOnMainThreadBlocking(task: () -> T): T
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/index.html b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/index.html new file mode 100644 index 0000000000..1bd2fa2f8e --- /dev/null +++ b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/-main-thread-executor/index.html @@ -0,0 +1,85 @@ + + + + + MainThreadExecutor + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

MainThreadExecutor

+ +
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
fun <T> executeOnMainThreadBlocking(task: () -> T): T
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html index 22981387c5..f82be66c2d 100644 --- a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html +++ b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/create-pipe-line.html @@ -51,7 +51,7 @@

createPipeLine

-
suspend fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline
+
fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+ +
+
+
+

Functions

@@ -82,7 +97,7 @@

Functions

-
suspend fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline
+
fun SDKFactory.createPipeLine(context: Context, mode: PipelineMode = PipelineMode.BLUR, blurPercentage: Int?, background: Bitmap? = null): ImagePipeline
@@ -112,7 +127,7 @@

Functions

-
suspend fun EffectsSDK.init(context: Context, effectsKey: String)
+
fun EffectsSDK.init(context: Context, effectsKey: String)
diff --git a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/init.html b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/init.html index b771eff039..e25e31163f 100644 --- a/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/init.html +++ b/public/api-reference/android/v2/virtualBackground/live.hms.video.virtualbackground/init.html @@ -51,7 +51,7 @@

init

-
suspend fun EffectsSDK.init(context: Context, effectsKey: String)
+
fun EffectsSDK.init(context: Context, effectsKey: String)
-
+
-
+
+
+
+ Layer +
+ -
+
low
-
+ -
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+
-
+ -
+
-
+ -
+
-
+ -
+ -
+ -
+
-
+
@@ -3502,6 +3507,11 @@ init()
+
diff --git a/public/docs/v2/noise-cancellation/enable-nc-preview.mp4 b/public/docs/v2/noise-cancellation/enable-nc-preview.mp4 new file mode 100644 index 0000000000..44e8314512 Binary files /dev/null and b/public/docs/v2/noise-cancellation/enable-nc-preview.mp4 differ diff --git a/public/docs/v2/noise-cancellation/enable-nc.mp4 b/public/docs/v2/noise-cancellation/enable-nc.mp4 new file mode 100644 index 0000000000..9d596fa8ce Binary files /dev/null and b/public/docs/v2/noise-cancellation/enable-nc.mp4 differ diff --git a/public/docs/v2/noise-cancellation/experience-nc.mp4 b/public/docs/v2/noise-cancellation/experience-nc.mp4 new file mode 100644 index 0000000000..6b45e52437 Binary files /dev/null and b/public/docs/v2/noise-cancellation/experience-nc.mp4 differ diff --git a/releases.js b/releases.js index 58f241bf44..2833f85d4d 100644 --- a/releases.js +++ b/releases.js @@ -1 +1 @@ -exports.releases = releases = {"Android":{"version":"v2.9.3","date":"February 17, 2024"},"iOS":{"version":"1.6.0","date":"February 27, 2024"},"React Native":{"version":"1.9.12","date":"February 26, 2024"},"Web":{"version":"2024-02-23","date":"February 23, 2024"},"Flutter":{"version":"1.9.11","date":"February 26, 2024"},"Server-side":{"version":"2024-02-27","date":"February 27, 2024"}} \ No newline at end of file +exports.releases = releases = {"Android":{"version":"v2.9.65","date":"August 13, 2024"},"iOS":{"version":"1.16.0","date":"August 13, 2024"},"React Native":{"version":"1.10.9","date":"July 31, 2024"},"Web":{"version":"2024-08-16","date":"August 16, 2024"},"Flutter":{"version":"1.10.5","date":"July 25, 2024"},"Server-side":{"version":"2024-02-28","date":"February 28, 2024"}} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index e2d28e39e7..9a7d832865 100644 --- a/yarn.lock +++ b/yarn.lock @@ -178,6 +178,76 @@ "@algolia/logger-common" "4.18.0" "@algolia/requester-common" "4.18.0" +"@amplitude/analytics-browser@^2.11.6": + version "2.11.6" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-browser/-/analytics-browser-2.11.6.tgz#7283ad6b29e918f3d2d1143abd15cdadd82fbb85" + integrity sha512-EvXK5vitHFE7Pic50Oz/EDlnvvGdFBnSagEZurnCe9u8bViWagyhfLuM+So1OCTbsEORbXK1rIhkvtKH+ChdjQ== + dependencies: + "@amplitude/analytics-client-common" "^2.3.3" + "@amplitude/analytics-core" "^2.5.2" + "@amplitude/analytics-remote-config" "^0.4.0" + "@amplitude/analytics-types" "^2.8.2" + "@amplitude/plugin-autocapture-browser" "^1.0.2" + "@amplitude/plugin-page-view-tracking-browser" "^2.3.2" + tslib "^2.4.1" + +"@amplitude/analytics-client-common@>=1 <3", "@amplitude/analytics-client-common@^2.3.3": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-client-common/-/analytics-client-common-2.3.3.tgz#7a23d72d8884b2723043274f13c7ece35104d62d" + integrity sha512-HOvD2A8DH0y2LATrQ0AhFSOCk6yZayebu4+UsEBT76Q7EEYtnc59WMCRRIi5Zv6OqHpOvABumF7g3HmL6ehTYA== + dependencies: + "@amplitude/analytics-connector" "^1.4.8" + "@amplitude/analytics-core" "^2.5.2" + "@amplitude/analytics-types" "^2.8.2" + tslib "^2.4.1" + +"@amplitude/analytics-connector@^1.4.8": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-connector/-/analytics-connector-1.5.0.tgz#89a78b8c6463abe4de1d621db4af6c62f0d62b0a" + integrity sha512-T8mOYzB9RRxckzhL0NTHwdge9xuFxXEOplC8B1Y3UX3NHa3BLh7DlBUZlCOwQgMc2nxDfnSweDL5S3bhC+W90g== + +"@amplitude/analytics-core@>=1 <3", "@amplitude/analytics-core@^2.5.2": + version "2.5.2" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-core/-/analytics-core-2.5.2.tgz#502cb294dad94ec4dd8330e19228d9101ebaa0ad" + integrity sha512-4ojYUL7LA+qrlaz1n1nxpsbpgS1k6DOrQ3fBiQOuDJE8Av0aZfylDksFPnZvD1+MMdIm/ONkVAYfEaW3x/uH3Q== + dependencies: + "@amplitude/analytics-types" "^2.8.2" + tslib "^2.4.1" + +"@amplitude/analytics-remote-config@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-remote-config/-/analytics-remote-config-0.4.0.tgz#e9835836ef40c6b2e72bc8c7a88803dda5559556" + integrity sha512-ilp9Dz8Z92V9Wilmz8XIbvEbtuVaN65+jM06JP8I7wL8eNOHVIi4HcI151BzIyekjbprbS1w18Ps3dj2sHlFXA== + dependencies: + "@amplitude/analytics-client-common" ">=1 <3" + "@amplitude/analytics-core" ">=1 <3" + "@amplitude/analytics-types" ">=1 <3" + tslib "^2.4.1" + +"@amplitude/analytics-types@>=1 <3", "@amplitude/analytics-types@^2.8.2": + version "2.8.2" + resolved "https://registry.yarnpkg.com/@amplitude/analytics-types/-/analytics-types-2.8.2.tgz#aee2b0d42c962d8408056b45b957f18dbb2529ef" + integrity sha512-SWFXIMxhFm1/k3PUvxvYLY1iwzS28yd9A6pa5pEnrbaAZwM+E/24ucxs59VGp1N5qlIsvF0aVGSoKzN4ydh4eA== + +"@amplitude/plugin-autocapture-browser@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@amplitude/plugin-autocapture-browser/-/plugin-autocapture-browser-1.0.2.tgz#9f983ebab82142311dfe35e77a54c539e8293279" + integrity sha512-zk5cSquX0OO/zWsw3E+lHHvdCOJdZZvlKRjrt6J2llSs1hxBNMwV5peliXr8uO5d8oIcHjUrscKJK07mfjx6Fg== + dependencies: + "@amplitude/analytics-client-common" ">=1 <3" + "@amplitude/analytics-types" ">=1 <3" + rxjs "^7.8.1" + tslib "^2.4.1" + +"@amplitude/plugin-page-view-tracking-browser@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@amplitude/plugin-page-view-tracking-browser/-/plugin-page-view-tracking-browser-2.3.2.tgz#92e80abbac3bfc078080fc98ce2a4a035c0a96d0" + integrity sha512-02ngtIYsbdjOgW48JY+RC0rtV9VqnNLew40f+zKmod5yeY4tkITMnHP93saELz7cTfjwH0aoPbtBSwRCP0YvRw== + dependencies: + "@amplitude/analytics-client-common" "^2.3.3" + "@amplitude/analytics-types" "^2.8.2" + tslib "^2.4.1" + "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" @@ -6369,6 +6439,13 @@ rxjs@^6.4.0, rxjs@^6.5.2: dependencies: tslib "^1.9.0" +rxjs@^7.8.1: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + sade@^1.7.3: version "1.8.1" resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" @@ -6938,6 +7015,11 @@ tslib@^2.0.0, tslib@^2.1.0, tslib@^2.4.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== +tslib@^2.4.1: + version "2.7.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" + integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== + tsutils@^3.17.1, tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"