Repository URL to install this package:
|
Version:
4.5.4.dev1 ▾
|
"""
@generated by mypy-protobuf. Do not edit manually!
isort:skip_file
"""
import builtins
import google.protobuf.descriptor
import google.protobuf.internal.containers
import google.protobuf.message
import typing
import typing_extensions
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
class Path(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
class PropertiesEntry(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
KEY_FIELD_NUMBER: builtins.int
VALUE_FIELD_NUMBER: builtins.int
key: typing.Text = ...
value: typing.Text = ...
def __init__(self,
*,
key : typing.Text = ...,
value : typing.Text = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal[u"key",b"key",u"value",b"value"]) -> None: ...
LABEL_FIELD_NUMBER: builtins.int
INDEX_FIELD_NUMBER: builtins.int
PATHS_FIELD_NUMBER: builtins.int
PROPERTIES_FIELD_NUMBER: builtins.int
label: typing.Text = ...
index: builtins.int = ...
@property
def paths(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Path]: ...
@property
def properties(self) -> google.protobuf.internal.containers.ScalarMap[typing.Text, typing.Text]: ...
def __init__(self,
*,
label : typing.Text = ...,
index : builtins.int = ...,
paths : typing.Optional[typing.Iterable[global___Path]] = ...,
properties : typing.Optional[typing.Mapping[typing.Text, typing.Text]] = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal[u"index",b"index",u"label",b"label",u"node",b"node"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal[u"index",b"index",u"label",b"label",u"node",b"node",u"paths",b"paths",u"properties",b"properties"]) -> None: ...
def WhichOneof(self, oneof_group: typing_extensions.Literal[u"node",b"node"]) -> typing.Optional[typing_extensions.Literal["label","index"]]: ...
global___Path = Path