massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / protobuf / google / protobuf / wrappers_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 DoubleValue(google.protobuf.message.Message):
14     """Wrapper message for `double`.
15
16     The JSON representation for `DoubleValue` is JSON number.
17     """
18     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
19     VALUE_FIELD_NUMBER: builtins.int
20     value: builtins.float = ...
21     """The double value."""
22
23     def __init__(self,
24         *,
25         value : builtins.float = ...,
26         ) -> None: ...
27     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
28 global___DoubleValue = DoubleValue
29
30 class FloatValue(google.protobuf.message.Message):
31     """Wrapper message for `float`.
32
33     The JSON representation for `FloatValue` is JSON number.
34     """
35     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
36     VALUE_FIELD_NUMBER: builtins.int
37     value: builtins.float = ...
38     """The float value."""
39
40     def __init__(self,
41         *,
42         value : builtins.float = ...,
43         ) -> None: ...
44     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
45 global___FloatValue = FloatValue
46
47 class Int64Value(google.protobuf.message.Message):
48     """Wrapper message for `int64`.
49
50     The JSON representation for `Int64Value` is JSON string.
51     """
52     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
53     VALUE_FIELD_NUMBER: builtins.int
54     value: builtins.int = ...
55     """The int64 value."""
56
57     def __init__(self,
58         *,
59         value : builtins.int = ...,
60         ) -> None: ...
61     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
62 global___Int64Value = Int64Value
63
64 class UInt64Value(google.protobuf.message.Message):
65     """Wrapper message for `uint64`.
66
67     The JSON representation for `UInt64Value` is JSON string.
68     """
69     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
70     VALUE_FIELD_NUMBER: builtins.int
71     value: builtins.int = ...
72     """The uint64 value."""
73
74     def __init__(self,
75         *,
76         value : builtins.int = ...,
77         ) -> None: ...
78     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
79 global___UInt64Value = UInt64Value
80
81 class Int32Value(google.protobuf.message.Message):
82     """Wrapper message for `int32`.
83
84     The JSON representation for `Int32Value` is JSON number.
85     """
86     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
87     VALUE_FIELD_NUMBER: builtins.int
88     value: builtins.int = ...
89     """The int32 value."""
90
91     def __init__(self,
92         *,
93         value : builtins.int = ...,
94         ) -> None: ...
95     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
96 global___Int32Value = Int32Value
97
98 class UInt32Value(google.protobuf.message.Message):
99     """Wrapper message for `uint32`.
100
101     The JSON representation for `UInt32Value` is JSON number.
102     """
103     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
104     VALUE_FIELD_NUMBER: builtins.int
105     value: builtins.int = ...
106     """The uint32 value."""
107
108     def __init__(self,
109         *,
110         value : builtins.int = ...,
111         ) -> None: ...
112     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
113 global___UInt32Value = UInt32Value
114
115 class BoolValue(google.protobuf.message.Message):
116     """Wrapper message for `bool`.
117
118     The JSON representation for `BoolValue` is JSON `true` and `false`.
119     """
120     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
121     VALUE_FIELD_NUMBER: builtins.int
122     value: builtins.bool = ...
123     """The bool value."""
124
125     def __init__(self,
126         *,
127         value : builtins.bool = ...,
128         ) -> None: ...
129     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
130 global___BoolValue = BoolValue
131
132 class StringValue(google.protobuf.message.Message):
133     """Wrapper message for `string`.
134
135     The JSON representation for `StringValue` is JSON string.
136     """
137     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
138     VALUE_FIELD_NUMBER: builtins.int
139     value: typing.Text = ...
140     """The string value."""
141
142     def __init__(self,
143         *,
144         value : typing.Text = ...,
145         ) -> None: ...
146     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
147 global___StringValue = StringValue
148
149 class BytesValue(google.protobuf.message.Message):
150     """Wrapper message for `bytes`.
151
152     The JSON representation for `BytesValue` is JSON string.
153     """
154     DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
155     VALUE_FIELD_NUMBER: builtins.int
156     value: builtins.bytes = ...
157     """The bytes value."""
158
159     def __init__(self,
160         *,
161         value : builtins.bytes = ...,
162         ) -> None: ...
163     def ClearField(self, field_name: typing_extensions.Literal["value",b"value"]) -> None: ...
164 global___BytesValue = BytesValue