-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmessages_pb2.pyi
More file actions
115 lines (99 loc) · 4.24 KB
/
messages_pb2.pyi
File metadata and controls
115 lines (99 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Copyright 2023-2025 Buf Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from buf.validate.conformance.cases.other_package import embed_pb2 as _embed_pb2
from buf.validate import validate_pb2 as _validate_pb2
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from collections.abc import Mapping as _Mapping
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
DESCRIPTOR: _descriptor.FileDescriptor
class TestMsg(_message.Message):
__slots__ = ("const", "nested")
CONST_FIELD_NUMBER: _ClassVar[int]
NESTED_FIELD_NUMBER: _ClassVar[int]
const: str
nested: TestMsg
def __init__(self, const: _Optional[str] = ..., nested: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageNone(_message.Message):
__slots__ = ("val",)
class NoneMsg(_message.Message):
__slots__ = ()
def __init__(self) -> None: ...
VAL_FIELD_NUMBER: _ClassVar[int]
val: MessageNone.NoneMsg
def __init__(self, val: _Optional[_Union[MessageNone.NoneMsg, _Mapping]] = ...) -> None: ...
class MessageDisabled(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: int
def __init__(self, val: _Optional[int] = ...) -> None: ...
class Message(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: TestMsg
def __init__(self, val: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageCrossPackage(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: _embed_pb2.Embed
def __init__(self, val: _Optional[_Union[_embed_pb2.Embed, _Mapping]] = ...) -> None: ...
class MessageSkip(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: TestMsg
def __init__(self, val: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageRequired(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: TestMsg
def __init__(self, val: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageRequiredButOptional(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: TestMsg
def __init__(self, val: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageRequiredOneof(_message.Message):
__slots__ = ("val",)
VAL_FIELD_NUMBER: _ClassVar[int]
val: TestMsg
def __init__(self, val: _Optional[_Union[TestMsg, _Mapping]] = ...) -> None: ...
class MessageWith3dInside(_message.Message):
__slots__ = ()
def __init__(self) -> None: ...
class MessageOneofSingleField(_message.Message):
__slots__ = ("str_field", "bool_field")
STR_FIELD_FIELD_NUMBER: _ClassVar[int]
BOOL_FIELD_FIELD_NUMBER: _ClassVar[int]
str_field: str
bool_field: bool
def __init__(self, str_field: _Optional[str] = ..., bool_field: bool = ...) -> None: ...
class MessageOneofMultipleFields(_message.Message):
__slots__ = ("str_field", "bool_field")
STR_FIELD_FIELD_NUMBER: _ClassVar[int]
BOOL_FIELD_FIELD_NUMBER: _ClassVar[int]
str_field: str
bool_field: bool
def __init__(self, str_field: _Optional[str] = ..., bool_field: bool = ...) -> None: ...
class MessageOneofMultipleFieldsRequired(_message.Message):
__slots__ = ("str_field", "bool_field")
STR_FIELD_FIELD_NUMBER: _ClassVar[int]
BOOL_FIELD_FIELD_NUMBER: _ClassVar[int]
str_field: str
bool_field: bool
def __init__(self, str_field: _Optional[str] = ..., bool_field: bool = ...) -> None: ...
class MessageOneofUnknownFieldName(_message.Message):
__slots__ = ("str_field",)
STR_FIELD_FIELD_NUMBER: _ClassVar[int]
str_field: str
def __init__(self, str_field: _Optional[str] = ...) -> None: ...