massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / protobuf / google / protobuf / source_context_pb2.pyi
1 """
2 @generated by mypy-protobuf.  Do not edit manually!
3 isort:skip_file
4 """
5 import builtins
6 import google.protobuf.descriptor
7 import google.protobuf.message
8 import typing
9 import typing_extensions
10
11 DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
12
13 class SourceContext(google.protobuf.message.Message):
14     """`SourceContext` represents information about the source of a
15     protobuf element, like the file in which it is defined.
16     """
17     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
18     FILE_NAME_FIELD_NUMBER: builtins.int
19     file_name: typing.Text = ...
20     """The path-qualified name of the .proto file that contained the associated
21     protobuf element.  For example: `"google/protobuf/source_context.proto"`.
22     """
23
24     def __init__(self,
25         *,
26         file_name : typing.Text = ...,
27         ) -> None: ...
28     def ClearField(self, field_name: typing_extensions.Literal["file_name",b"file_name"]) -> None: ...
29 global___SourceContext = SourceContext