massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / google / protobuf / any_pb2.pyi
1 from google.protobuf.message import (\r
2     Message,\r
3 )\r
4 from google.protobuf.internal import well_known_types\r
5 \r
6 from typing import (\r
7     Optional,\r
8     Text,\r
9 )\r
10 \r
11 \r
12 class Any(Message, well_known_types.Any_):\r
13     type_url = ...  # type: Text\r
14     value = ...  # type: bytes\r
15 \r
16     def __init__(self,\r
17                  type_url: Optional[Text] = ...,\r
18                  value: Optional[bytes] = ...,\r
19                  ) -> None: ...\r
20 \r
21     @classmethod\r
22     def FromString(cls, s: bytes) -> Any: ...\r