How to use the zoomus.components.user function in zoomus

To help you get started, we’ve selected a few zoomus examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github actmd / zoomus / tests / zoomus / components / user / test_pending.py View on Github external
def setUp(self):
        self.component = components.user.UserComponent(
            base_uri="http://foo.com",
            config={
                "api_key": "KEY",
                "api_secret": "SECRET",
                "version": util.API_VERSION_1,
            },
github actmd / zoomus / tests / zoomus / test_client.py View on Github external
)
        self.assertIsInstance(
            client.components["meeting"], components.meeting.MeetingComponentV2
        )
        self.assertIsInstance(
            client.components["metric"], components.metric.MetricComponentV2
        )
        self.assertIsInstance(
            client.components["past_meeting"],
            components.past_meeting.PastMeetingComponentV2,
        )
        self.assertIsInstance(
            client.components["report"], components.report.ReportComponentV2
        )
        self.assertIsInstance(
            client.components["user"], components.user.UserComponentV2
        )
        self.assertIsInstance(
            client.components["webinar"], components.webinar.WebinarComponentV2
        )
        self.assertIsInstance(
            client.components["recording"], components.recording.RecordingComponentV2
        )
        self.assertIsInstance(
            client.components["phone"], components.phone.PhoneComponentV2
        )