Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
)
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
)
def setUp(self):
self.component = components.webinar.WebinarComponent(
base_uri="http://foo.com",
config={
"api_key": "KEY",
"api_secret": "SECRET",
"version": util.API_VERSION_1,
},
def setUp(self):
self.component = components.webinar.WebinarComponent(
base_uri="http://foo.com",
config={
"api_key": "KEY",
"api_secret": "SECRET",
"version": util.API_VERSION_1,
},
def setUp(self):
self.component = components.webinar.WebinarComponentV2(
base_uri="http://foo.com",
config={
"api_key": "KEY",
"api_secret": "SECRET",
"version": util.API_VERSION_2,
},