Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.19 KB

File metadata and controls

30 lines (25 loc) · 1.19 KB
description Automatically generated file. DO NOT MODIFY
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.virtual_event_presenter import VirtualEventPresenter
from msgraph.generated.models.virtual_event_presenter_details import VirtualEventPresenterDetails
from msgraph.generated.models.item_body import ItemBody
from msgraph.generated.models.body_type import BodyType
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = VirtualEventPresenter(
	presenter_details = VirtualEventPresenterDetails(
		bio = ItemBody(
			content = "Lead Product Manager of Contoso Sales department",
			content_type = BodyType.Text,
		),
		company = "Contoso",
		job_title = "Product Manager",
		linked_in_profile_web_url = "https://linkedin.com/in/DianeDemoss",
		personal_site_web_url = "https://DianeDemoss.com",
	),
)

result = await graph_client.solutions.virtual_events.webinars.by_virtual_event_webinar_id('virtualEventWebinar-id').presenters.by_virtual_event_presenter_id('virtualEventPresenter-id').patch(request_body)