msgraph-sdk-python
msgraph-sdk-python copied to clipboard
How do I use static typing with msgraph-sdk-python
If I want to manipulate a DriveItem, I need to define the type:
folder : DriveItem = DriveItem()
is there a way to import DriveItem without doing:
from msgraph.generated.models.drive_item import DriveItem
?