1from typing import Dict, Union
2
3from github.GithubObject import _NotSetType
4
5class InputGitTreeElement:
6    def __init__(
7        self,
8        path: str,
9        mode: str,
10        type: str,
11        content: Union[str, _NotSetType] = ...,
12        sha: Union[str, _NotSetType, None] = ...,
13    ) -> None: ...
14    @property
15    def _identity(self) -> Dict[str, str]: ...
16