mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Go side: - Log hooks returned by Implemented() - Log each hook name -> ID mapping - Log OnActivate implementation status - Log OnActivate call flow Python side: - Log Implemented() return value - Log OnActivate gRPC receipt and handler invocation This is temporary debug logging to diagnose why OnActivate isn't being called for Python plugins. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
4805 lines
183 KiB
Python
4805 lines
183 KiB
Python
"""
|
|
@generated by mypy-protobuf. Do not edit manually!
|
|
isort:skip_file
|
|
Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
See LICENSE.txt for license information.
|
|
"""
|
|
|
|
from collections import abc as _abc
|
|
from google.protobuf import descriptor as _descriptor
|
|
from google.protobuf import message as _message
|
|
from google.protobuf import struct_pb2 as _struct_pb2
|
|
from google.protobuf.internal import containers as _containers
|
|
import builtins as _builtins
|
|
import common_pb2 as _common_pb2
|
|
import sys
|
|
import typing as _typing
|
|
import user_pb2 as _user_pb2
|
|
|
|
if sys.version_info >= (3, 10):
|
|
from typing import TypeAlias as _TypeAlias
|
|
else:
|
|
from typing_extensions import TypeAlias as _TypeAlias
|
|
|
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
|
|
@_typing.final
|
|
class GetLicenseRequest(_message.Message):
|
|
"""===========================================================================
|
|
Server Methods
|
|
===========================================================================
|
|
|
|
Empty
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetLicenseRequest: _TypeAlias = GetLicenseRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetLicenseResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
LICENSE_JSON_FIELD_NUMBER: _builtins.int
|
|
license_json: _builtins.bytes
|
|
"""JSON-encoded model.License"""
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
license_json: _builtins.bytes = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "license_json", b"license_json"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetLicenseResponse: _TypeAlias = GetLicenseResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class IsEnterpriseReadyRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___IsEnterpriseReadyRequest: _TypeAlias = IsEnterpriseReadyRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class IsEnterpriseReadyResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
IS_ENTERPRISE_READY_FIELD_NUMBER: _builtins.int
|
|
is_enterprise_ready: _builtins.bool
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
is_enterprise_ready: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "is_enterprise_ready", b"is_enterprise_ready"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___IsEnterpriseReadyResponse: _TypeAlias = IsEnterpriseReadyResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetServerVersionRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetServerVersionRequest: _TypeAlias = GetServerVersionRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetServerVersionResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VERSION_FIELD_NUMBER: _builtins.int
|
|
version: _builtins.str
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
version: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "version", b"version"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetServerVersionResponse: _TypeAlias = GetServerVersionResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetSystemInstallDateRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetSystemInstallDateRequest: _TypeAlias = GetSystemInstallDateRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetSystemInstallDateResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
INSTALL_DATE_FIELD_NUMBER: _builtins.int
|
|
install_date: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
install_date: _builtins.int = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "install_date", b"install_date"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetSystemInstallDateResponse: _TypeAlias = GetSystemInstallDateResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetDiagnosticIdRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetDiagnosticIdRequest: _TypeAlias = GetDiagnosticIdRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetDiagnosticIdResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
DIAGNOSTIC_ID_FIELD_NUMBER: _builtins.int
|
|
diagnostic_id: _builtins.str
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
diagnostic_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["diagnostic_id", b"diagnostic_id", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetDiagnosticIdResponse: _TypeAlias = GetDiagnosticIdResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetTelemetryIdRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetTelemetryIdRequest: _TypeAlias = GetTelemetryIdRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetTelemetryIdResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
TELEMETRY_ID_FIELD_NUMBER: _builtins.int
|
|
telemetry_id: _builtins.str
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
telemetry_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "telemetry_id", b"telemetry_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetTelemetryIdResponse: _TypeAlias = GetTelemetryIdResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterCommandRequest(_message.Message):
|
|
"""===========================================================================
|
|
Command Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COMMAND_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def command(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
command: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["command", b"command"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command", b"command"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterCommandRequest: _TypeAlias = RegisterCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterCommandResponse: _TypeAlias = RegisterCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnregisterCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
TRIGGER_FIELD_NUMBER: _builtins.int
|
|
team_id: _builtins.str
|
|
trigger: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
team_id: _builtins.str = ...,
|
|
trigger: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["team_id", b"team_id", "trigger", b"trigger"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnregisterCommandRequest: _TypeAlias = UnregisterCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnregisterCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnregisterCommandResponse: _TypeAlias = UnregisterCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ExecuteSlashCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COMMAND_ARGS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def command_args(self) -> Global___CommandArgs: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
command_args: Global___CommandArgs | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["command_args", b"command_args"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command_args", b"command_args"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ExecuteSlashCommandRequest: _TypeAlias = ExecuteSlashCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ExecuteSlashCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
RESPONSE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def response(self) -> Global___CommandResponse: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
response: Global___CommandResponse | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "response", b"response"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "response", b"response"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ExecuteSlashCommandResponse: _TypeAlias = ExecuteSlashCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CMD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def cmd(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
cmd: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["cmd", b"cmd"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["cmd", b"cmd"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateCommandRequest: _TypeAlias = CreateCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMAND_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def command(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
command: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateCommandResponse: _TypeAlias = CreateCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListCommandsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
team_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
team_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["team_id", b"team_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListCommandsRequest: _TypeAlias = ListCommandsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListCommandsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMANDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def commands(self) -> _containers.RepeatedCompositeFieldContainer[Global___Command]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
commands: _abc.Iterable[Global___Command] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["commands", b"commands", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListCommandsResponse: _TypeAlias = ListCommandsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListCustomCommandsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
team_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
team_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["team_id", b"team_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListCustomCommandsRequest: _TypeAlias = ListCustomCommandsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListCustomCommandsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMANDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def commands(self) -> _containers.RepeatedCompositeFieldContainer[Global___Command]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
commands: _abc.Iterable[Global___Command] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["commands", b"commands", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListCustomCommandsResponse: _TypeAlias = ListCustomCommandsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListPluginCommandsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
team_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
team_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["team_id", b"team_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListPluginCommandsRequest: _TypeAlias = ListPluginCommandsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListPluginCommandsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMANDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def commands(self) -> _containers.RepeatedCompositeFieldContainer[Global___Command]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
commands: _abc.Iterable[Global___Command] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["commands", b"commands", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListPluginCommandsResponse: _TypeAlias = ListPluginCommandsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListBuiltInCommandsRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___ListBuiltInCommandsRequest: _TypeAlias = ListBuiltInCommandsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ListBuiltInCommandsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMANDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def commands(self) -> _containers.RepeatedCompositeFieldContainer[Global___Command]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
commands: _abc.Iterable[Global___Command] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["commands", b"commands", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ListBuiltInCommandsResponse: _TypeAlias = ListBuiltInCommandsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COMMAND_ID_FIELD_NUMBER: _builtins.int
|
|
command_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
command_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command_id", b"command_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetCommandRequest: _TypeAlias = GetCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMAND_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def command(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
command: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetCommandResponse: _TypeAlias = GetCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COMMAND_ID_FIELD_NUMBER: _builtins.int
|
|
UPDATED_CMD_FIELD_NUMBER: _builtins.int
|
|
command_id: _builtins.str
|
|
@_builtins.property
|
|
def updated_cmd(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
command_id: _builtins.str = ...,
|
|
updated_cmd: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["updated_cmd", b"updated_cmd"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command_id", b"command_id", "updated_cmd", b"updated_cmd"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateCommandRequest: _TypeAlias = UpdateCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COMMAND_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def command(self) -> Global___Command: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
command: Global___Command | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command", b"command", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateCommandResponse: _TypeAlias = UpdateCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteCommandRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COMMAND_ID_FIELD_NUMBER: _builtins.int
|
|
command_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
command_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["command_id", b"command_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteCommandRequest: _TypeAlias = DeleteCommandRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteCommandResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteCommandResponse: _TypeAlias = DeleteCommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPreferenceForUserRequest(_message.Message):
|
|
"""===========================================================================
|
|
Preference Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
CATEGORY_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
category: _builtins.str
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
category: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["category", b"category", "name", b"name", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPreferenceForUserRequest: _TypeAlias = GetPreferenceForUserRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPreferenceForUserResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
PREFERENCE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def preference(self) -> Global___Preference: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
preference: Global___Preference | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "preference", b"preference"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "preference", b"preference"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPreferenceForUserResponse: _TypeAlias = GetPreferenceForUserResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPreferencesForUserRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPreferencesForUserRequest: _TypeAlias = GetPreferencesForUserRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPreferencesForUserResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
PREFERENCES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def preferences(self) -> _containers.RepeatedCompositeFieldContainer[Global___Preference]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
preferences: _abc.Iterable[Global___Preference] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "preferences", b"preferences"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPreferencesForUserResponse: _TypeAlias = GetPreferencesForUserResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePreferencesForUserRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
PREFERENCES_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
@_builtins.property
|
|
def preferences(self) -> _containers.RepeatedCompositeFieldContainer[Global___Preference]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
preferences: _abc.Iterable[Global___Preference] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["preferences", b"preferences", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePreferencesForUserRequest: _TypeAlias = UpdatePreferencesForUserRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePreferencesForUserResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePreferencesForUserResponse: _TypeAlias = UpdatePreferencesForUserResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePreferencesForUserRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
PREFERENCES_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
@_builtins.property
|
|
def preferences(self) -> _containers.RepeatedCompositeFieldContainer[Global___Preference]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
preferences: _abc.Iterable[Global___Preference] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["preferences", b"preferences", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePreferencesForUserRequest: _TypeAlias = DeletePreferencesForUserRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePreferencesForUserResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePreferencesForUserResponse: _TypeAlias = DeletePreferencesForUserResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateOAuthAppRequest(_message.Message):
|
|
"""===========================================================================
|
|
OAuth Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
APP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def app(self) -> Global___OAuthApp: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
app: Global___OAuthApp | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["app", b"app"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app", b"app"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateOAuthAppRequest: _TypeAlias = CreateOAuthAppRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateOAuthAppResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
APP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def app(self) -> Global___OAuthApp: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
app: Global___OAuthApp | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateOAuthAppResponse: _TypeAlias = CreateOAuthAppResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetOAuthAppRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
APP_ID_FIELD_NUMBER: _builtins.int
|
|
app_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
app_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app_id", b"app_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetOAuthAppRequest: _TypeAlias = GetOAuthAppRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetOAuthAppResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
APP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def app(self) -> Global___OAuthApp: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
app: Global___OAuthApp | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetOAuthAppResponse: _TypeAlias = GetOAuthAppResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateOAuthAppRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
APP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def app(self) -> Global___OAuthApp: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
app: Global___OAuthApp | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["app", b"app"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app", b"app"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateOAuthAppRequest: _TypeAlias = UpdateOAuthAppRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateOAuthAppResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
APP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def app(self) -> Global___OAuthApp: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
app: Global___OAuthApp | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app", b"app", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateOAuthAppResponse: _TypeAlias = UpdateOAuthAppResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteOAuthAppRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
APP_ID_FIELD_NUMBER: _builtins.int
|
|
app_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
app_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["app_id", b"app_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteOAuthAppRequest: _TypeAlias = DeleteOAuthAppRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteOAuthAppResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteOAuthAppResponse: _TypeAlias = DeleteOAuthAppResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupRequest(_message.Message):
|
|
"""===========================================================================
|
|
Group Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupRequest: _TypeAlias = GetGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupResponse: _TypeAlias = GetGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupByNameRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["name", b"name"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupByNameRequest: _TypeAlias = GetGroupByNameRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupByNameResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupByNameResponse: _TypeAlias = GetGroupByNameResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupMemberUsersRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
PAGE_FIELD_NUMBER: _builtins.int
|
|
PER_PAGE_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
page: _builtins.int
|
|
per_page: _builtins.int
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
page: _builtins.int = ...,
|
|
per_page: _builtins.int = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "page", b"page", "per_page", b"per_page"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupMemberUsersRequest: _TypeAlias = GetGroupMemberUsersRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupMemberUsersResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
USERS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def users(self) -> _containers.RepeatedCompositeFieldContainer[_user_pb2.User]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
users: _abc.Iterable[_user_pb2.User] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "users", b"users"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupMemberUsersResponse: _TypeAlias = GetGroupMemberUsersResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsBySourceRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_SOURCE_FIELD_NUMBER: _builtins.int
|
|
group_source: _builtins.str
|
|
""""ldap", "custom" """
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_source: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_source", b"group_source"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsBySourceRequest: _TypeAlias = GetGroupsBySourceRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsBySourceResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUPS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def groups(self) -> _containers.RepeatedCompositeFieldContainer[Global___Group]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
groups: _abc.Iterable[Global___Group] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "groups", b"groups"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsBySourceResponse: _TypeAlias = GetGroupsBySourceResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsForUserRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsForUserRequest: _TypeAlias = GetGroupsForUserRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsForUserResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUPS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def groups(self) -> _containers.RepeatedCompositeFieldContainer[Global___Group]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
groups: _abc.Iterable[Global___Group] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "groups", b"groups"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsForUserResponse: _TypeAlias = GetGroupsForUserResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupMemberRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
user_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
user_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupMemberRequest: _TypeAlias = UpsertGroupMemberRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupMemberResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_MEMBER_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_member(self) -> Global___GroupMember: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_member: Global___GroupMember | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_member", b"group_member"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_member", b"group_member"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupMemberResponse: _TypeAlias = UpsertGroupMemberResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupMembersRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
USER_IDS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def user_ids(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
user_ids: _abc.Iterable[_builtins.str] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "user_ids", b"user_ids"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupMembersRequest: _TypeAlias = UpsertGroupMembersRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupMembersResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_MEMBERS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_members(self) -> _containers.RepeatedCompositeFieldContainer[Global___GroupMember]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_members: _abc.Iterable[Global___GroupMember] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_members", b"group_members"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupMembersResponse: _TypeAlias = UpsertGroupMembersResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupByRemoteIDRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
GROUP_SOURCE_FIELD_NUMBER: _builtins.int
|
|
remote_id: _builtins.str
|
|
group_source: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
remote_id: _builtins.str = ...,
|
|
group_source: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_source", b"group_source", "remote_id", b"remote_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupByRemoteIDRequest: _TypeAlias = GetGroupByRemoteIDRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupByRemoteIDResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupByRemoteIDResponse: _TypeAlias = GetGroupByRemoteIDResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateGroupRequest: _TypeAlias = CreateGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateGroupResponse: _TypeAlias = CreateGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateGroupRequest: _TypeAlias = UpdateGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateGroupResponse: _TypeAlias = UpdateGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupRequest: _TypeAlias = DeleteGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupResponse: _TypeAlias = DeleteGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RestoreGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RestoreGroupRequest: _TypeAlias = RestoreGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RestoreGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___Group: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___Group | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RestoreGroupResponse: _TypeAlias = RestoreGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupMemberRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
user_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
user_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupMemberRequest: _TypeAlias = DeleteGroupMemberRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupMemberResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_MEMBER_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_member(self) -> Global___GroupMember: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_member: Global___GroupMember | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_member", b"group_member"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_member", b"group_member"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupMemberResponse: _TypeAlias = DeleteGroupMemberResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupSyncableRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_TYPE_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
syncable_id: _builtins.str
|
|
syncable_type: _builtins.str
|
|
""""team" or "channel" """
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
syncable_id: _builtins.str = ...,
|
|
syncable_type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "syncable_id", b"syncable_id", "syncable_type", b"syncable_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupSyncableRequest: _TypeAlias = GetGroupSyncableRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupSyncableResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupSyncableResponse: _TypeAlias = GetGroupSyncableResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupSyncablesRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_TYPE_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
syncable_type: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
syncable_type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "syncable_type", b"syncable_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupSyncablesRequest: _TypeAlias = GetGroupSyncablesRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupSyncablesResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_SYNCABLES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_syncables(self) -> _containers.RepeatedCompositeFieldContainer[Global___GroupSyncable]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_syncables: _abc.Iterable[Global___GroupSyncable] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncables", b"group_syncables"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupSyncablesResponse: _TypeAlias = GetGroupSyncablesResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupSyncableRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupSyncableRequest: _TypeAlias = UpsertGroupSyncableRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertGroupSyncableResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertGroupSyncableResponse: _TypeAlias = UpsertGroupSyncableResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateGroupSyncableRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateGroupSyncableRequest: _TypeAlias = UpdateGroupSyncableRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateGroupSyncableResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateGroupSyncableResponse: _TypeAlias = UpdateGroupSyncableResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupSyncableRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_TYPE_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
syncable_id: _builtins.str
|
|
syncable_type: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
syncable_id: _builtins.str = ...,
|
|
syncable_type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "syncable_id", b"syncable_id", "syncable_type", b"syncable_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupSyncableRequest: _TypeAlias = DeleteGroupSyncableRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupSyncableResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_SYNCABLE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group_syncable(self) -> Global___GroupSyncable: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group_syncable: Global___GroupSyncable | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group_syncable", b"group_syncable"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupSyncableResponse: _TypeAlias = DeleteGroupSyncableResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PAGE_FIELD_NUMBER: _builtins.int
|
|
PER_PAGE_FIELD_NUMBER: _builtins.int
|
|
OPTS_FIELD_NUMBER: _builtins.int
|
|
VIEW_RESTRICTIONS_FIELD_NUMBER: _builtins.int
|
|
page: _builtins.int
|
|
per_page: _builtins.int
|
|
@_builtins.property
|
|
def opts(self) -> Global___GroupSearchOpts: ...
|
|
@_builtins.property
|
|
def view_restrictions(self) -> _common_pb2.ViewUsersRestrictions: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
page: _builtins.int = ...,
|
|
per_page: _builtins.int = ...,
|
|
opts: Global___GroupSearchOpts | None = ...,
|
|
view_restrictions: _common_pb2.ViewUsersRestrictions | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts", "view_restrictions", b"view_restrictions"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts", "page", b"page", "per_page", b"per_page", "view_restrictions", b"view_restrictions"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsRequest: _TypeAlias = GetGroupsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetGroupsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUPS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def groups(self) -> _containers.RepeatedCompositeFieldContainer[Global___Group]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
groups: _abc.Iterable[Global___Group] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "groups", b"groups"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetGroupsResponse: _TypeAlias = GetGroupsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateDefaultSyncableMembershipsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PARAMS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def params(self) -> Global___CreateDefaultMembershipParams: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
params: Global___CreateDefaultMembershipParams | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["params", b"params"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["params", b"params"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateDefaultSyncableMembershipsRequest: _TypeAlias = CreateDefaultSyncableMembershipsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateDefaultSyncableMembershipsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateDefaultSyncableMembershipsResponse: _TypeAlias = CreateDefaultSyncableMembershipsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupConstrainedMembershipsRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___DeleteGroupConstrainedMembershipsRequest: _TypeAlias = DeleteGroupConstrainedMembershipsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeleteGroupConstrainedMembershipsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeleteGroupConstrainedMembershipsResponse: _TypeAlias = DeleteGroupConstrainedMembershipsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterPluginForSharedChannelsRequest(_message.Message):
|
|
"""===========================================================================
|
|
Shared Channels Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
OPTS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def opts(self) -> Global___RegisterPluginOpts: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
opts: Global___RegisterPluginOpts | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterPluginForSharedChannelsRequest: _TypeAlias = RegisterPluginForSharedChannelsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterPluginForSharedChannelsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
remote_id: _builtins.str
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
remote_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "remote_id", b"remote_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterPluginForSharedChannelsResponse: _TypeAlias = RegisterPluginForSharedChannelsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnregisterPluginForSharedChannelsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PLUGIN_ID_FIELD_NUMBER: _builtins.int
|
|
plugin_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
plugin_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["plugin_id", b"plugin_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnregisterPluginForSharedChannelsRequest: _TypeAlias = UnregisterPluginForSharedChannelsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnregisterPluginForSharedChannelsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnregisterPluginForSharedChannelsResponse: _TypeAlias = UnregisterPluginForSharedChannelsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ShareChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
SHARED_CHANNEL_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def shared_channel(self) -> Global___SharedChannel: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
shared_channel: Global___SharedChannel | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["shared_channel", b"shared_channel"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["shared_channel", b"shared_channel"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ShareChannelRequest: _TypeAlias = ShareChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class ShareChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
SHARED_CHANNEL_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def shared_channel(self) -> Global___SharedChannel: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
shared_channel: Global___SharedChannel | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "shared_channel", b"shared_channel"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "shared_channel", b"shared_channel"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___ShareChannelResponse: _TypeAlias = ShareChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateSharedChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
SHARED_CHANNEL_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def shared_channel(self) -> Global___SharedChannel: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
shared_channel: Global___SharedChannel | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["shared_channel", b"shared_channel"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["shared_channel", b"shared_channel"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateSharedChannelRequest: _TypeAlias = UpdateSharedChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateSharedChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
SHARED_CHANNEL_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def shared_channel(self) -> Global___SharedChannel: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
shared_channel: Global___SharedChannel | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "shared_channel", b"shared_channel"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "shared_channel", b"shared_channel"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateSharedChannelResponse: _TypeAlias = UpdateSharedChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnshareChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnshareChannelRequest: _TypeAlias = UnshareChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UnshareChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
UNSHARED_FIELD_NUMBER: _builtins.int
|
|
unshared: _builtins.bool
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
unshared: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "unshared", b"unshared"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UnshareChannelResponse: _TypeAlias = UnshareChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateSharedChannelCursorRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
CURSOR_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
remote_id: _builtins.str
|
|
@_builtins.property
|
|
def cursor(self) -> Global___GetPostsSinceForSyncCursor: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
remote_id: _builtins.str = ...,
|
|
cursor: Global___GetPostsSinceForSyncCursor | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["cursor", b"cursor"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id", "cursor", b"cursor", "remote_id", b"remote_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateSharedChannelCursorRequest: _TypeAlias = UpdateSharedChannelCursorRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdateSharedChannelCursorResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdateSharedChannelCursorResponse: _TypeAlias = UpdateSharedChannelCursorResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SyncSharedChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SyncSharedChannelRequest: _TypeAlias = SyncSharedChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SyncSharedChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SyncSharedChannelResponse: _TypeAlias = SyncSharedChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class InviteRemoteToChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
SHARE_IF_NOT_SHARED_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
remote_id: _builtins.str
|
|
user_id: _builtins.str
|
|
share_if_not_shared: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
remote_id: _builtins.str = ...,
|
|
user_id: _builtins.str = ...,
|
|
share_if_not_shared: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id", "remote_id", b"remote_id", "share_if_not_shared", b"share_if_not_shared", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___InviteRemoteToChannelRequest: _TypeAlias = InviteRemoteToChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class InviteRemoteToChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___InviteRemoteToChannelResponse: _TypeAlias = InviteRemoteToChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UninviteRemoteFromChannelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
remote_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
remote_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id", "remote_id", b"remote_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UninviteRemoteFromChannelRequest: _TypeAlias = UninviteRemoteFromChannelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UninviteRemoteFromChannelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UninviteRemoteFromChannelResponse: _TypeAlias = UninviteRemoteFromChannelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreatePropertyFieldRequest(_message.Message):
|
|
"""===========================================================================
|
|
Property Field/Value/Group Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field", b"field"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreatePropertyFieldRequest: _TypeAlias = CreatePropertyFieldRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreatePropertyFieldResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreatePropertyFieldResponse: _TypeAlias = CreatePropertyFieldResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
field_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
field_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field_id", b"field_id", "group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldRequest: _TypeAlias = GetPropertyFieldRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldResponse: _TypeAlias = GetPropertyFieldResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
IDS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def ids(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
ids: _abc.Iterable[_builtins.str] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "ids", b"ids"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldsRequest: _TypeAlias = GetPropertyFieldsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def fields(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyField]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
fields: _abc.Iterable[Global___PropertyField] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "fields", b"fields"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldsResponse: _TypeAlias = GetPropertyFieldsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyFieldRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field", b"field", "group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyFieldRequest: _TypeAlias = UpdatePropertyFieldRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyFieldResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyFieldResponse: _TypeAlias = UpdatePropertyFieldResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyFieldRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
field_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
field_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field_id", b"field_id", "group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyFieldRequest: _TypeAlias = DeletePropertyFieldRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyFieldResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyFieldResponse: _TypeAlias = DeletePropertyFieldResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SearchPropertyFieldsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
OPTS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def opts(self) -> Global___PropertyFieldSearchOpts: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
opts: Global___PropertyFieldSearchOpts | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "opts", b"opts"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SearchPropertyFieldsRequest: _TypeAlias = SearchPropertyFieldsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SearchPropertyFieldsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def fields(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyField]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
fields: _abc.Iterable[Global___PropertyField] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "fields", b"fields"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SearchPropertyFieldsResponse: _TypeAlias = SearchPropertyFieldsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CountPropertyFieldsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_DELETED_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
include_deleted: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
include_deleted: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "include_deleted", b"include_deleted"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CountPropertyFieldsRequest: _TypeAlias = CountPropertyFieldsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CountPropertyFieldsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COUNT_FIELD_NUMBER: _builtins.int
|
|
count: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
count: _builtins.int = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["count", b"count", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CountPropertyFieldsResponse: _TypeAlias = CountPropertyFieldsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CountPropertyFieldsForTargetRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_DELETED_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
target_type: _builtins.str
|
|
target_id: _builtins.str
|
|
include_deleted: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
target_type: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
include_deleted: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "include_deleted", b"include_deleted", "target_id", b"target_id", "target_type", b"target_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CountPropertyFieldsForTargetRequest: _TypeAlias = CountPropertyFieldsForTargetRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CountPropertyFieldsForTargetResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
COUNT_FIELD_NUMBER: _builtins.int
|
|
count: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
count: _builtins.int = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["count", b"count", "error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CountPropertyFieldsForTargetResponse: _TypeAlias = CountPropertyFieldsForTargetResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreatePropertyValueRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreatePropertyValueRequest: _TypeAlias = CreatePropertyValueRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreatePropertyValueResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreatePropertyValueResponse: _TypeAlias = CreatePropertyValueResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyValueRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
VALUE_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
value_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
value_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "value_id", b"value_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyValueRequest: _TypeAlias = GetPropertyValueRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyValueResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyValueResponse: _TypeAlias = GetPropertyValueResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyValuesRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
IDS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def ids(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
ids: _abc.Iterable[_builtins.str] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "ids", b"ids"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyValuesRequest: _TypeAlias = GetPropertyValuesRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyValuesResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyValuesResponse: _TypeAlias = GetPropertyValuesResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyValueRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyValueRequest: _TypeAlias = UpdatePropertyValueRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyValueResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyValueResponse: _TypeAlias = UpdatePropertyValueResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertPropertyValueRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertPropertyValueRequest: _TypeAlias = UpsertPropertyValueRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertPropertyValueResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def value(self) -> Global___PropertyValue: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
value: Global___PropertyValue | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertPropertyValueResponse: _TypeAlias = UpsertPropertyValueResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValueRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
VALUE_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
value_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
value_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "value_id", b"value_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValueRequest: _TypeAlias = DeletePropertyValueRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValueResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValueResponse: _TypeAlias = DeletePropertyValueResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SearchPropertyValuesRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
OPTS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def opts(self) -> Global___PropertyValueSearchOpts: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
opts: Global___PropertyValueSearchOpts | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["opts", b"opts"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "opts", b"opts"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SearchPropertyValuesRequest: _TypeAlias = SearchPropertyValuesRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SearchPropertyValuesResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SearchPropertyValuesResponse: _TypeAlias = SearchPropertyValuesResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterPropertyGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["name", b"name"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterPropertyGroupRequest: _TypeAlias = RegisterPropertyGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterPropertyGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___PropertyGroup: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___PropertyGroup | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterPropertyGroupResponse: _TypeAlias = RegisterPropertyGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyGroupRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["name", b"name"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyGroupRequest: _TypeAlias = GetPropertyGroupRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyGroupResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
GROUP_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def group(self) -> Global___PropertyGroup: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
group: Global___PropertyGroup | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "group", b"group"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyGroupResponse: _TypeAlias = GetPropertyGroupResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldByNameRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
target_id: _builtins.str
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "name", b"name", "target_id", b"target_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldByNameRequest: _TypeAlias = GetPropertyFieldByNameRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPropertyFieldByNameResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def field(self) -> Global___PropertyField: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
field: Global___PropertyField | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "field", b"field"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPropertyFieldByNameResponse: _TypeAlias = GetPropertyFieldByNameResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyFieldsRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELDS_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def fields(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyField]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
fields: _abc.Iterable[Global___PropertyField] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["fields", b"fields", "group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyFieldsRequest: _TypeAlias = UpdatePropertyFieldsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyFieldsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
FIELDS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def fields(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyField]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
fields: _abc.Iterable[Global___PropertyField] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "fields", b"fields"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyFieldsResponse: _TypeAlias = UpdatePropertyFieldsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyValuesRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyValuesRequest: _TypeAlias = UpdatePropertyValuesRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpdatePropertyValuesResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpdatePropertyValuesResponse: _TypeAlias = UpdatePropertyValuesResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertPropertyValuesRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertPropertyValuesRequest: _TypeAlias = UpsertPropertyValuesRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class UpsertPropertyValuesResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
VALUES_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def values(self) -> _containers.RepeatedCompositeFieldContainer[Global___PropertyValue]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
values: _abc.Iterable[Global___PropertyValue] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "values", b"values"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___UpsertPropertyValuesResponse: _TypeAlias = UpsertPropertyValuesResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValuesForTargetRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
target_type: _builtins.str
|
|
target_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
target_type: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["group_id", b"group_id", "target_id", b"target_id", "target_type", b"target_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValuesForTargetRequest: _TypeAlias = DeletePropertyValuesForTargetRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValuesForTargetResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValuesForTargetResponse: _TypeAlias = DeletePropertyValuesForTargetResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValuesForFieldRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_ID_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
field_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
field_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field_id", b"field_id", "group_id", b"group_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValuesForFieldRequest: _TypeAlias = DeletePropertyValuesForFieldRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DeletePropertyValuesForFieldResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DeletePropertyValuesForFieldResponse: _TypeAlias = DeletePropertyValuesForFieldResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class LogAuditRecRequest(_message.Message):
|
|
"""===========================================================================
|
|
Audit Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
RECORD_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def record(self) -> Global___AuditRecord: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
record: Global___AuditRecord | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["record", b"record"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["record", b"record"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___LogAuditRecRequest: _TypeAlias = LogAuditRecRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class LogAuditRecResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___LogAuditRecResponse: _TypeAlias = LogAuditRecResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class LogAuditRecWithLevelRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
RECORD_FIELD_NUMBER: _builtins.int
|
|
LEVEL_FIELD_NUMBER: _builtins.int
|
|
level: _builtins.str
|
|
""""debug", "info", "warn", "error" """
|
|
@_builtins.property
|
|
def record(self) -> Global___AuditRecord: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
record: Global___AuditRecord | None = ...,
|
|
level: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["record", b"record"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["level", b"level", "record", b"record"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___LogAuditRecWithLevelRequest: _TypeAlias = LogAuditRecWithLevelRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class LogAuditRecWithLevelResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___LogAuditRecWithLevelResponse: _TypeAlias = LogAuditRecWithLevelResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PluginHTTPRequest(_message.Message):
|
|
"""===========================================================================
|
|
Miscellaneous Methods
|
|
===========================================================================
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
@_typing.final
|
|
class HeadersEntry(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
KEY_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
key: _builtins.str
|
|
value: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
key: _builtins.str = ...,
|
|
value: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["key", b"key", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
METHOD_FIELD_NUMBER: _builtins.int
|
|
URL_FIELD_NUMBER: _builtins.int
|
|
HEADERS_FIELD_NUMBER: _builtins.int
|
|
BODY_FIELD_NUMBER: _builtins.int
|
|
method: _builtins.str
|
|
url: _builtins.str
|
|
body: _builtins.bytes
|
|
@_builtins.property
|
|
def headers(self) -> _containers.ScalarMap[_builtins.str, _builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
method: _builtins.str = ...,
|
|
url: _builtins.str = ...,
|
|
headers: _abc.Mapping[_builtins.str, _builtins.str] | None = ...,
|
|
body: _builtins.bytes = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["body", b"body", "headers", b"headers", "method", b"method", "url", b"url"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PluginHTTPRequest: _TypeAlias = PluginHTTPRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PluginHTTPResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
@_typing.final
|
|
class HeadersEntry(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
KEY_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
key: _builtins.str
|
|
value: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
key: _builtins.str = ...,
|
|
value: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["key", b"key", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
STATUS_CODE_FIELD_NUMBER: _builtins.int
|
|
HEADERS_FIELD_NUMBER: _builtins.int
|
|
BODY_FIELD_NUMBER: _builtins.int
|
|
status_code: _builtins.int
|
|
body: _builtins.bytes
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
@_builtins.property
|
|
def headers(self) -> _containers.ScalarMap[_builtins.str, _builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
status_code: _builtins.int = ...,
|
|
headers: _abc.Mapping[_builtins.str, _builtins.str] | None = ...,
|
|
body: _builtins.bytes = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["body", b"body", "error", b"error", "headers", b"headers", "status_code", b"status_code"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PluginHTTPResponse: _TypeAlias = PluginHTTPResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetCloudLimitsRequest(_message.Message):
|
|
"""Empty"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
def __init__(
|
|
self,
|
|
) -> None: ...
|
|
|
|
Global___GetCloudLimitsRequest: _TypeAlias = GetCloudLimitsRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetCloudLimitsResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
LIMITS_JSON_FIELD_NUMBER: _builtins.int
|
|
limits_json: _builtins.bytes
|
|
"""JSON-encoded model.ProductLimits"""
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
limits_json: _builtins.bytes = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "limits_json", b"limits_json"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetCloudLimitsResponse: _TypeAlias = GetCloudLimitsResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class OpenInteractiveDialogRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
DIALOG_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def dialog(self) -> Global___OpenDialogRequest: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
dialog: Global___OpenDialogRequest | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["dialog", b"dialog"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["dialog", b"dialog"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___OpenInteractiveDialogRequest: _TypeAlias = OpenInteractiveDialogRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class OpenInteractiveDialogResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___OpenInteractiveDialogResponse: _TypeAlias = OpenInteractiveDialogResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PublishPluginClusterEventRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
EVENT_FIELD_NUMBER: _builtins.int
|
|
OPTS_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def event(self) -> Global___PluginClusterEvent: ...
|
|
@_builtins.property
|
|
def opts(self) -> Global___PluginClusterEventSendOptions: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
event: Global___PluginClusterEvent | None = ...,
|
|
opts: Global___PluginClusterEventSendOptions | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["event", b"event", "opts", b"opts"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["event", b"event", "opts", b"opts"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PublishPluginClusterEventRequest: _TypeAlias = PublishPluginClusterEventRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PublishPluginClusterEventResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PublishPluginClusterEventResponse: _TypeAlias = PublishPluginClusterEventResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterCollectionAndTopicRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
COLLECTION_TYPE_FIELD_NUMBER: _builtins.int
|
|
TOPIC_TYPE_FIELD_NUMBER: _builtins.int
|
|
collection_type: _builtins.str
|
|
topic_type: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
collection_type: _builtins.str = ...,
|
|
topic_type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["collection_type", b"collection_type", "topic_type", b"topic_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterCollectionAndTopicRequest: _TypeAlias = RegisterCollectionAndTopicRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterCollectionAndTopicResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterCollectionAndTopicResponse: _TypeAlias = RegisterCollectionAndTopicResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RequestTrialLicenseRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
REQUESTER_ID_FIELD_NUMBER: _builtins.int
|
|
USERS_FIELD_NUMBER: _builtins.int
|
|
TERMS_ACCEPTED_FIELD_NUMBER: _builtins.int
|
|
RECEIVE_EMAILS_ACCEPTED_FIELD_NUMBER: _builtins.int
|
|
requester_id: _builtins.str
|
|
users: _builtins.int
|
|
terms_accepted: _builtins.bool
|
|
receive_emails_accepted: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
requester_id: _builtins.str = ...,
|
|
users: _builtins.int = ...,
|
|
terms_accepted: _builtins.bool = ...,
|
|
receive_emails_accepted: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["receive_emails_accepted", b"receive_emails_accepted", "requester_id", b"requester_id", "terms_accepted", b"terms_accepted", "users", b"users"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RequestTrialLicenseRequest: _TypeAlias = RequestTrialLicenseRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RequestTrialLicenseResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RequestTrialLicenseResponse: _TypeAlias = RequestTrialLicenseResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RolesGrantPermissionRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ROLE_NAMES_FIELD_NUMBER: _builtins.int
|
|
PERMISSION_ID_FIELD_NUMBER: _builtins.int
|
|
permission_id: _builtins.str
|
|
@_builtins.property
|
|
def role_names(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
role_names: _abc.Iterable[_builtins.str] | None = ...,
|
|
permission_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["permission_id", b"permission_id", "role_names", b"role_names"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RolesGrantPermissionRequest: _TypeAlias = RolesGrantPermissionRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RolesGrantPermissionResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
HAS_PERMISSION_FIELD_NUMBER: _builtins.int
|
|
has_permission: _builtins.bool
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
has_permission: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error", "has_permission", b"has_permission"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RolesGrantPermissionResponse: _TypeAlias = RolesGrantPermissionResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SendMailRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TO_FIELD_NUMBER: _builtins.int
|
|
SUBJECT_FIELD_NUMBER: _builtins.int
|
|
HTML_BODY_FIELD_NUMBER: _builtins.int
|
|
to: _builtins.str
|
|
subject: _builtins.str
|
|
html_body: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
to: _builtins.str = ...,
|
|
subject: _builtins.str = ...,
|
|
html_body: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["html_body", b"html_body", "subject", b"subject", "to", b"to"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SendMailRequest: _TypeAlias = SendMailRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SendMailResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SendMailResponse: _TypeAlias = SendMailResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SendPushNotificationRequest(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
NOTIFICATION_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
@_builtins.property
|
|
def notification(self) -> Global___PushNotification: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
notification: Global___PushNotification | None = ...,
|
|
user_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["notification", b"notification"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["notification", b"notification", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SendPushNotificationRequest: _TypeAlias = SendPushNotificationRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SendPushNotificationResponse(_message.Message):
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ERROR_FIELD_NUMBER: _builtins.int
|
|
@_builtins.property
|
|
def error(self) -> _common_pb2.AppError: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
error: _common_pb2.AppError | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["error", b"error"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SendPushNotificationResponse: _TypeAlias = SendPushNotificationResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class Command(_message.Message):
|
|
"""===========================================================================
|
|
Supporting Types
|
|
===========================================================================
|
|
|
|
Command represents a slash command.
|
|
Maps to model.Command in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
TOKEN_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
CREATOR_ID_FIELD_NUMBER: _builtins.int
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
TRIGGER_FIELD_NUMBER: _builtins.int
|
|
METHOD_FIELD_NUMBER: _builtins.int
|
|
USERNAME_FIELD_NUMBER: _builtins.int
|
|
ICON_URL_FIELD_NUMBER: _builtins.int
|
|
AUTO_COMPLETE_FIELD_NUMBER: _builtins.int
|
|
AUTO_COMPLETE_DESC_FIELD_NUMBER: _builtins.int
|
|
AUTO_COMPLETE_HINT_FIELD_NUMBER: _builtins.int
|
|
DISPLAY_NAME_FIELD_NUMBER: _builtins.int
|
|
DESCRIPTION_FIELD_NUMBER: _builtins.int
|
|
URL_FIELD_NUMBER: _builtins.int
|
|
PLUGIN_ID_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
token: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
creator_id: _builtins.str
|
|
team_id: _builtins.str
|
|
trigger: _builtins.str
|
|
method: _builtins.str
|
|
username: _builtins.str
|
|
icon_url: _builtins.str
|
|
auto_complete: _builtins.bool
|
|
auto_complete_desc: _builtins.str
|
|
auto_complete_hint: _builtins.str
|
|
display_name: _builtins.str
|
|
description: _builtins.str
|
|
url: _builtins.str
|
|
plugin_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
token: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
creator_id: _builtins.str = ...,
|
|
team_id: _builtins.str = ...,
|
|
trigger: _builtins.str = ...,
|
|
method: _builtins.str = ...,
|
|
username: _builtins.str = ...,
|
|
icon_url: _builtins.str = ...,
|
|
auto_complete: _builtins.bool = ...,
|
|
auto_complete_desc: _builtins.str = ...,
|
|
auto_complete_hint: _builtins.str = ...,
|
|
display_name: _builtins.str = ...,
|
|
description: _builtins.str = ...,
|
|
url: _builtins.str = ...,
|
|
plugin_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["auto_complete", b"auto_complete", "auto_complete_desc", b"auto_complete_desc", "auto_complete_hint", b"auto_complete_hint", "create_at", b"create_at", "creator_id", b"creator_id", "delete_at", b"delete_at", "description", b"description", "display_name", b"display_name", "icon_url", b"icon_url", "id", b"id", "method", b"method", "plugin_id", b"plugin_id", "team_id", b"team_id", "token", b"token", "trigger", b"trigger", "update_at", b"update_at", "url", b"url", "username", b"username"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___Command: _TypeAlias = Command # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CommandArgs(_message.Message):
|
|
"""CommandArgs contains arguments for executing a slash command.
|
|
Maps to model.CommandArgs in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
ROOT_ID_FIELD_NUMBER: _builtins.int
|
|
PARENT_ID_FIELD_NUMBER: _builtins.int
|
|
TRIGGER_ID_FIELD_NUMBER: _builtins.int
|
|
COMMAND_FIELD_NUMBER: _builtins.int
|
|
SITE_URL_FIELD_NUMBER: _builtins.int
|
|
T_FIELD_NUMBER: _builtins.int
|
|
USER_MENTION_FIELD_NUMBER: _builtins.int
|
|
CHANNEL_MENTION_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
channel_id: _builtins.str
|
|
team_id: _builtins.str
|
|
root_id: _builtins.str
|
|
parent_id: _builtins.str
|
|
trigger_id: _builtins.str
|
|
command: _builtins.str
|
|
site_url: _builtins.str
|
|
t: _builtins.str
|
|
user_mention: _builtins.str
|
|
channel_mention: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
channel_id: _builtins.str = ...,
|
|
team_id: _builtins.str = ...,
|
|
root_id: _builtins.str = ...,
|
|
parent_id: _builtins.str = ...,
|
|
trigger_id: _builtins.str = ...,
|
|
command: _builtins.str = ...,
|
|
site_url: _builtins.str = ...,
|
|
t: _builtins.str = ...,
|
|
user_mention: _builtins.str = ...,
|
|
channel_mention: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id", "channel_mention", b"channel_mention", "command", b"command", "parent_id", b"parent_id", "root_id", b"root_id", "site_url", b"site_url", "t", b"t", "team_id", b"team_id", "trigger_id", b"trigger_id", "user_id", b"user_id", "user_mention", b"user_mention"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CommandArgs: _TypeAlias = CommandArgs # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CommandResponse(_message.Message):
|
|
"""CommandResponse is the response from executing a slash command.
|
|
Maps to model.CommandResponse in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
RESPONSE_TYPE_FIELD_NUMBER: _builtins.int
|
|
TEXT_FIELD_NUMBER: _builtins.int
|
|
USERNAME_FIELD_NUMBER: _builtins.int
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
ICON_URL_FIELD_NUMBER: _builtins.int
|
|
TYPE_FIELD_NUMBER: _builtins.int
|
|
PROPS_FIELD_NUMBER: _builtins.int
|
|
GOTO_LOCATION_FIELD_NUMBER: _builtins.int
|
|
TRIGGER_ID_FIELD_NUMBER: _builtins.int
|
|
SKIP_SLACK_PARSING_FIELD_NUMBER: _builtins.int
|
|
ATTACHMENTS_FIELD_NUMBER: _builtins.int
|
|
response_type: _builtins.str
|
|
text: _builtins.str
|
|
username: _builtins.str
|
|
channel_id: _builtins.str
|
|
icon_url: _builtins.str
|
|
type: _builtins.str
|
|
goto_location: _builtins.str
|
|
trigger_id: _builtins.str
|
|
skip_slack_parsing: _builtins.bool
|
|
@_builtins.property
|
|
def props(self) -> _struct_pb2.Struct: ...
|
|
@_builtins.property
|
|
def attachments(self) -> _containers.RepeatedCompositeFieldContainer[Global___CommandResponse]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
response_type: _builtins.str = ...,
|
|
text: _builtins.str = ...,
|
|
username: _builtins.str = ...,
|
|
channel_id: _builtins.str = ...,
|
|
icon_url: _builtins.str = ...,
|
|
type: _builtins.str = ...,
|
|
props: _struct_pb2.Struct | None = ...,
|
|
goto_location: _builtins.str = ...,
|
|
trigger_id: _builtins.str = ...,
|
|
skip_slack_parsing: _builtins.bool = ...,
|
|
attachments: _abc.Iterable[Global___CommandResponse] | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["props", b"props"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["attachments", b"attachments", "channel_id", b"channel_id", "goto_location", b"goto_location", "icon_url", b"icon_url", "props", b"props", "response_type", b"response_type", "skip_slack_parsing", b"skip_slack_parsing", "text", b"text", "trigger_id", b"trigger_id", "type", b"type", "username", b"username"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CommandResponse: _TypeAlias = CommandResponse # noqa: Y015
|
|
|
|
@_typing.final
|
|
class Preference(_message.Message):
|
|
"""Preference represents a user preference.
|
|
Maps to model.Preference in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
CATEGORY_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
user_id: _builtins.str
|
|
category: _builtins.str
|
|
name: _builtins.str
|
|
value: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
user_id: _builtins.str = ...,
|
|
category: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
value: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["category", b"category", "name", b"name", "user_id", b"user_id", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___Preference: _TypeAlias = Preference # noqa: Y015
|
|
|
|
@_typing.final
|
|
class OAuthApp(_message.Message):
|
|
"""OAuthApp represents an OAuth application.
|
|
Maps to model.OAuthApp in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
CREATOR_ID_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
CLIENT_SECRET_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
DESCRIPTION_FIELD_NUMBER: _builtins.int
|
|
ICON_URL_FIELD_NUMBER: _builtins.int
|
|
CALLBACK_URLS_FIELD_NUMBER: _builtins.int
|
|
HOMEPAGE_FIELD_NUMBER: _builtins.int
|
|
IS_TRUSTED_FIELD_NUMBER: _builtins.int
|
|
MATTERMOSTAPPID_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
creator_id: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
client_secret: _builtins.str
|
|
name: _builtins.str
|
|
description: _builtins.str
|
|
icon_url: _builtins.str
|
|
callback_urls: _builtins.str
|
|
homepage: _builtins.str
|
|
is_trusted: _builtins.bool
|
|
mattermostAppId: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
creator_id: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
client_secret: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
description: _builtins.str = ...,
|
|
icon_url: _builtins.str = ...,
|
|
callback_urls: _builtins.str = ...,
|
|
homepage: _builtins.str = ...,
|
|
is_trusted: _builtins.bool = ...,
|
|
mattermostAppId: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["callback_urls", b"callback_urls", "client_secret", b"client_secret", "create_at", b"create_at", "creator_id", b"creator_id", "description", b"description", "homepage", b"homepage", "icon_url", b"icon_url", "id", b"id", "is_trusted", b"is_trusted", "mattermostAppId", b"mattermostAppId", "name", b"name", "update_at", b"update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___OAuthApp: _TypeAlias = OAuthApp # noqa: Y015
|
|
|
|
@_typing.final
|
|
class Group(_message.Message):
|
|
"""Group represents a user group.
|
|
Maps to model.Group in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
DISPLAY_NAME_FIELD_NUMBER: _builtins.int
|
|
DESCRIPTION_FIELD_NUMBER: _builtins.int
|
|
SOURCE_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
ALLOW_REFERENCE_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
name: _builtins.str
|
|
display_name: _builtins.str
|
|
description: _builtins.str
|
|
source: _builtins.str
|
|
remote_id: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
allow_reference: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
display_name: _builtins.str = ...,
|
|
description: _builtins.str = ...,
|
|
source: _builtins.str = ...,
|
|
remote_id: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
allow_reference: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["allow_reference", b"allow_reference", "create_at", b"create_at", "delete_at", b"delete_at", "description", b"description", "display_name", b"display_name", "id", b"id", "name", b"name", "remote_id", b"remote_id", "source", b"source", "update_at", b"update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___Group: _TypeAlias = Group # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GroupMember(_message.Message):
|
|
"""GroupMember represents membership in a group.
|
|
Maps to model.GroupMember in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
user_id: _builtins.str
|
|
create_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
user_id: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["create_at", b"create_at", "delete_at", b"delete_at", "group_id", b"group_id", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GroupMember: _TypeAlias = GroupMember # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GroupSyncable(_message.Message):
|
|
"""GroupSyncable represents a group's sync to a team or channel.
|
|
Maps to model.GroupSyncable in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_ID_FIELD_NUMBER: _builtins.int
|
|
SYNCABLE_TYPE_FIELD_NUMBER: _builtins.int
|
|
AUTO_ADD_FIELD_NUMBER: _builtins.int
|
|
SCHEME_ADMIN_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
group_id: _builtins.str
|
|
syncable_id: _builtins.str
|
|
syncable_type: _builtins.str
|
|
""""team" or "channel" """
|
|
auto_add: _builtins.bool
|
|
scheme_admin: _builtins.bool
|
|
create_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
update_at: _builtins.int
|
|
def __init__(
|
|
self,
|
|
*,
|
|
group_id: _builtins.str = ...,
|
|
syncable_id: _builtins.str = ...,
|
|
syncable_type: _builtins.str = ...,
|
|
auto_add: _builtins.bool = ...,
|
|
scheme_admin: _builtins.bool = ...,
|
|
create_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["auto_add", b"auto_add", "create_at", b"create_at", "delete_at", b"delete_at", "group_id", b"group_id", "scheme_admin", b"scheme_admin", "syncable_id", b"syncable_id", "syncable_type", b"syncable_type", "update_at", b"update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GroupSyncable: _TypeAlias = GroupSyncable # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GroupSearchOpts(_message.Message):
|
|
"""GroupSearchOpts contains options for searching groups.
|
|
Maps to model.GroupSearchOpts in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
Q_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_MEMBER_COUNT_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_TOTAL_MEMBER_COUNT_FIELD_NUMBER: _builtins.int
|
|
FILTER_ALLOW_REFERENCE_FIELD_NUMBER: _builtins.int
|
|
PAGE_OPTS_PAGE_FIELD_NUMBER: _builtins.int
|
|
PAGE_OPTS_PER_PAGE_FIELD_NUMBER: _builtins.int
|
|
FILTER_ARCHIVED_FIELD_NUMBER: _builtins.int
|
|
FILTER_PARENT_TEAM_PERMITTED_FIELD_NUMBER: _builtins.int
|
|
SOURCE_FIELD_NUMBER: _builtins.int
|
|
FILTER_HAS_MEMBER_FIELD_NUMBER: _builtins.int
|
|
SINCE_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_CHANNEL_MEMBER_COUNT_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_TIMEZONES_FIELD_NUMBER: _builtins.int
|
|
q: _builtins.str
|
|
include_member_count: _builtins.bool
|
|
include_total_member_count: _builtins.bool
|
|
filter_allow_reference: _builtins.str
|
|
page_opts_page: _builtins.int
|
|
page_opts_per_page: _builtins.int
|
|
filter_archived: _builtins.bool
|
|
filter_parent_team_permitted: _builtins.bool
|
|
source: _builtins.str
|
|
filter_has_member: _builtins.bool
|
|
since: _builtins.str
|
|
include_channel_member_count: _builtins.bool
|
|
include_timezones: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
q: _builtins.str = ...,
|
|
include_member_count: _builtins.bool = ...,
|
|
include_total_member_count: _builtins.bool = ...,
|
|
filter_allow_reference: _builtins.str = ...,
|
|
page_opts_page: _builtins.int = ...,
|
|
page_opts_per_page: _builtins.int = ...,
|
|
filter_archived: _builtins.bool = ...,
|
|
filter_parent_team_permitted: _builtins.bool = ...,
|
|
source: _builtins.str = ...,
|
|
filter_has_member: _builtins.bool = ...,
|
|
since: _builtins.str = ...,
|
|
include_channel_member_count: _builtins.bool = ...,
|
|
include_timezones: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["filter_allow_reference", b"filter_allow_reference", "filter_archived", b"filter_archived", "filter_has_member", b"filter_has_member", "filter_parent_team_permitted", b"filter_parent_team_permitted", "include_channel_member_count", b"include_channel_member_count", "include_member_count", b"include_member_count", "include_timezones", b"include_timezones", "include_total_member_count", b"include_total_member_count", "page_opts_page", b"page_opts_page", "page_opts_per_page", b"page_opts_per_page", "q", b"q", "since", b"since", "source", b"source"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GroupSearchOpts: _TypeAlias = GroupSearchOpts # noqa: Y015
|
|
|
|
@_typing.final
|
|
class CreateDefaultMembershipParams(_message.Message):
|
|
"""Note: ViewUsersRestrictions is defined in common.proto
|
|
|
|
CreateDefaultMembershipParams contains parameters for creating default memberships.
|
|
Maps to model.CreateDefaultMembershipParams in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
SINCE_FIELD_NUMBER: _builtins.int
|
|
SCOPE_TEAMS_FIELD_NUMBER: _builtins.int
|
|
SCOPE_CHANNELS_FIELD_NUMBER: _builtins.int
|
|
RE_ADD_REMOVED_MEMBERS_FIELD_NUMBER: _builtins.int
|
|
since: _builtins.int
|
|
scope_teams: _builtins.bool
|
|
scope_channels: _builtins.bool
|
|
re_add_removed_members: _builtins.bool
|
|
def __init__(
|
|
self,
|
|
*,
|
|
since: _builtins.int = ...,
|
|
scope_teams: _builtins.bool = ...,
|
|
scope_channels: _builtins.bool = ...,
|
|
re_add_removed_members: _builtins.bool = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["re_add_removed_members", b"re_add_removed_members", "scope_channels", b"scope_channels", "scope_teams", b"scope_teams", "since", b"since"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___CreateDefaultMembershipParams: _TypeAlias = CreateDefaultMembershipParams # noqa: Y015
|
|
|
|
@_typing.final
|
|
class RegisterPluginOpts(_message.Message):
|
|
"""RegisterPluginOpts contains options for registering a plugin for shared channels.
|
|
Maps to model.RegisterPluginOpts in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PLUGIN_ID_FIELD_NUMBER: _builtins.int
|
|
DISPLAY_NAME_FIELD_NUMBER: _builtins.int
|
|
DESCRIPTION_FIELD_NUMBER: _builtins.int
|
|
plugin_id: _builtins.str
|
|
display_name: _builtins.str
|
|
description: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
plugin_id: _builtins.str = ...,
|
|
display_name: _builtins.str = ...,
|
|
description: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["description", b"description", "display_name", b"display_name", "plugin_id", b"plugin_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___RegisterPluginOpts: _TypeAlias = RegisterPluginOpts # noqa: Y015
|
|
|
|
@_typing.final
|
|
class SharedChannel(_message.Message):
|
|
"""SharedChannel represents a shared channel.
|
|
Maps to model.SharedChannel in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
HOME_FIELD_NUMBER: _builtins.int
|
|
READ_ONLY_FIELD_NUMBER: _builtins.int
|
|
SHARE_NAME_FIELD_NUMBER: _builtins.int
|
|
SHARE_DISPLAY_NAME_FIELD_NUMBER: _builtins.int
|
|
SHARE_PURPOSE_FIELD_NUMBER: _builtins.int
|
|
SHARE_HEADER_FIELD_NUMBER: _builtins.int
|
|
CREATOR_ID_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
REMOTE_ID_FIELD_NUMBER: _builtins.int
|
|
TYPE_FIELD_NUMBER: _builtins.int
|
|
channel_id: _builtins.str
|
|
team_id: _builtins.str
|
|
home: _builtins.str
|
|
read_only: _builtins.bool
|
|
share_name: _builtins.str
|
|
share_display_name: _builtins.str
|
|
share_purpose: _builtins.str
|
|
share_header: _builtins.str
|
|
creator_id: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
remote_id: _builtins.str
|
|
type: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
channel_id: _builtins.str = ...,
|
|
team_id: _builtins.str = ...,
|
|
home: _builtins.str = ...,
|
|
read_only: _builtins.bool = ...,
|
|
share_name: _builtins.str = ...,
|
|
share_display_name: _builtins.str = ...,
|
|
share_purpose: _builtins.str = ...,
|
|
share_header: _builtins.str = ...,
|
|
creator_id: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
remote_id: _builtins.str = ...,
|
|
type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["channel_id", b"channel_id", "create_at", b"create_at", "creator_id", b"creator_id", "home", b"home", "read_only", b"read_only", "remote_id", b"remote_id", "share_display_name", b"share_display_name", "share_header", b"share_header", "share_name", b"share_name", "share_purpose", b"share_purpose", "team_id", b"team_id", "type", b"type", "update_at", b"update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___SharedChannel: _TypeAlias = SharedChannel # noqa: Y015
|
|
|
|
@_typing.final
|
|
class GetPostsSinceForSyncCursor(_message.Message):
|
|
"""GetPostsSinceForSyncCursor is a cursor for syncing posts.
|
|
Maps to model.GetPostsSinceForSyncCursor in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
LAST_POST_UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
LAST_POST_ID_FIELD_NUMBER: _builtins.int
|
|
last_post_update_at: _builtins.int
|
|
last_post_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
last_post_update_at: _builtins.int = ...,
|
|
last_post_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["last_post_id", b"last_post_id", "last_post_update_at", b"last_post_update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___GetPostsSinceForSyncCursor: _TypeAlias = GetPostsSinceForSyncCursor # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PropertyField(_message.Message):
|
|
"""PropertyField represents a property field.
|
|
Maps to model.PropertyField in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
TYPE_FIELD_NUMBER: _builtins.int
|
|
ATTRS_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
group_id: _builtins.str
|
|
name: _builtins.str
|
|
type: _builtins.str
|
|
target_id: _builtins.str
|
|
target_type: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
@_builtins.property
|
|
def attrs(self) -> _struct_pb2.Struct: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
group_id: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
type: _builtins.str = ...,
|
|
attrs: _struct_pb2.Struct | None = ...,
|
|
target_id: _builtins.str = ...,
|
|
target_type: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["attrs", b"attrs"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["attrs", b"attrs", "create_at", b"create_at", "delete_at", b"delete_at", "group_id", b"group_id", "id", b"id", "name", b"name", "target_id", b"target_id", "target_type", b"target_type", "type", b"type", "update_at", b"update_at"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PropertyField: _TypeAlias = PropertyField # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PropertyFieldSearchOpts(_message.Message):
|
|
"""PropertyFieldSearchOpts contains search options for property fields.
|
|
Maps to model.PropertyFieldSearchOpts in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PAGE_FIELD_NUMBER: _builtins.int
|
|
PER_PAGE_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_DELETED_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
page: _builtins.int
|
|
per_page: _builtins.int
|
|
include_deleted: _builtins.bool
|
|
target_type: _builtins.str
|
|
target_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
page: _builtins.int = ...,
|
|
per_page: _builtins.int = ...,
|
|
include_deleted: _builtins.bool = ...,
|
|
target_type: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["include_deleted", b"include_deleted", "page", b"page", "per_page", b"per_page", "target_id", b"target_id", "target_type", b"target_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PropertyFieldSearchOpts: _TypeAlias = PropertyFieldSearchOpts # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PropertyValue(_message.Message):
|
|
"""PropertyValue represents a property value.
|
|
Maps to model.PropertyValue in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
GROUP_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
UPDATE_AT_FIELD_NUMBER: _builtins.int
|
|
DELETE_AT_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
group_id: _builtins.str
|
|
field_id: _builtins.str
|
|
target_id: _builtins.str
|
|
target_type: _builtins.str
|
|
create_at: _builtins.int
|
|
update_at: _builtins.int
|
|
delete_at: _builtins.int
|
|
@_builtins.property
|
|
def value(self) -> _struct_pb2.Value: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
group_id: _builtins.str = ...,
|
|
field_id: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
target_type: _builtins.str = ...,
|
|
value: _struct_pb2.Value | None = ...,
|
|
create_at: _builtins.int = ...,
|
|
update_at: _builtins.int = ...,
|
|
delete_at: _builtins.int = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["create_at", b"create_at", "delete_at", b"delete_at", "field_id", b"field_id", "group_id", b"group_id", "id", b"id", "target_id", b"target_id", "target_type", b"target_type", "update_at", b"update_at", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PropertyValue: _TypeAlias = PropertyValue # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PropertyValueSearchOpts(_message.Message):
|
|
"""PropertyValueSearchOpts contains search options for property values.
|
|
Maps to model.PropertyValueSearchOpts in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
PAGE_FIELD_NUMBER: _builtins.int
|
|
PER_PAGE_FIELD_NUMBER: _builtins.int
|
|
INCLUDE_DELETED_FIELD_NUMBER: _builtins.int
|
|
TARGET_TYPE_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
FIELD_ID_FIELD_NUMBER: _builtins.int
|
|
page: _builtins.int
|
|
per_page: _builtins.int
|
|
include_deleted: _builtins.bool
|
|
target_type: _builtins.str
|
|
target_id: _builtins.str
|
|
field_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
page: _builtins.int = ...,
|
|
per_page: _builtins.int = ...,
|
|
include_deleted: _builtins.bool = ...,
|
|
target_type: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
field_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["field_id", b"field_id", "include_deleted", b"include_deleted", "page", b"page", "per_page", b"per_page", "target_id", b"target_id", "target_type", b"target_type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PropertyValueSearchOpts: _TypeAlias = PropertyValueSearchOpts # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PropertyGroup(_message.Message):
|
|
"""PropertyGroup represents a property group.
|
|
Maps to model.PropertyGroup in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
name: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["id", b"id", "name", b"name"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PropertyGroup: _TypeAlias = PropertyGroup # noqa: Y015
|
|
|
|
@_typing.final
|
|
class AuditRecord(_message.Message):
|
|
"""AuditRecord represents an audit log record.
|
|
Maps to model.AuditRecord in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
CREATE_AT_FIELD_NUMBER: _builtins.int
|
|
LEVEL_FIELD_NUMBER: _builtins.int
|
|
API_PATH_FIELD_NUMBER: _builtins.int
|
|
EVENT_FIELD_NUMBER: _builtins.int
|
|
STATUS_FIELD_NUMBER: _builtins.int
|
|
USER_ID_FIELD_NUMBER: _builtins.int
|
|
SESSION_ID_FIELD_NUMBER: _builtins.int
|
|
CLIENT_FIELD_NUMBER: _builtins.int
|
|
IP_ADDRESS_FIELD_NUMBER: _builtins.int
|
|
META_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
create_at: _builtins.int
|
|
level: _builtins.str
|
|
api_path: _builtins.str
|
|
event: _builtins.str
|
|
status: _builtins.str
|
|
user_id: _builtins.str
|
|
session_id: _builtins.str
|
|
client: _builtins.str
|
|
ip_address: _builtins.str
|
|
@_builtins.property
|
|
def meta(self) -> _struct_pb2.Struct: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
create_at: _builtins.int = ...,
|
|
level: _builtins.str = ...,
|
|
api_path: _builtins.str = ...,
|
|
event: _builtins.str = ...,
|
|
status: _builtins.str = ...,
|
|
user_id: _builtins.str = ...,
|
|
session_id: _builtins.str = ...,
|
|
client: _builtins.str = ...,
|
|
ip_address: _builtins.str = ...,
|
|
meta: _struct_pb2.Struct | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["meta", b"meta"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["api_path", b"api_path", "client", b"client", "create_at", b"create_at", "event", b"event", "id", b"id", "ip_address", b"ip_address", "level", b"level", "meta", b"meta", "session_id", b"session_id", "status", b"status", "user_id", b"user_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___AuditRecord: _TypeAlias = AuditRecord # noqa: Y015
|
|
|
|
@_typing.final
|
|
class OpenDialogRequest(_message.Message):
|
|
"""OpenDialogRequest represents a request to open an interactive dialog.
|
|
Maps to model.OpenDialogRequest in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TRIGGER_ID_FIELD_NUMBER: _builtins.int
|
|
URL_FIELD_NUMBER: _builtins.int
|
|
DIALOG_FIELD_NUMBER: _builtins.int
|
|
trigger_id: _builtins.str
|
|
url: _builtins.str
|
|
@_builtins.property
|
|
def dialog(self) -> Global___Dialog: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
trigger_id: _builtins.str = ...,
|
|
url: _builtins.str = ...,
|
|
dialog: Global___Dialog | None = ...,
|
|
) -> None: ...
|
|
_HasFieldArgType: _TypeAlias = _typing.Literal["dialog", b"dialog"] # noqa: Y015
|
|
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["dialog", b"dialog", "trigger_id", b"trigger_id", "url", b"url"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___OpenDialogRequest: _TypeAlias = OpenDialogRequest # noqa: Y015
|
|
|
|
@_typing.final
|
|
class Dialog(_message.Message):
|
|
"""Dialog represents an interactive dialog.
|
|
Maps to model.Dialog in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
CALLBACK_ID_FIELD_NUMBER: _builtins.int
|
|
TITLE_FIELD_NUMBER: _builtins.int
|
|
INTRODUCTION_TEXT_FIELD_NUMBER: _builtins.int
|
|
ELEMENTS_FIELD_NUMBER: _builtins.int
|
|
SUBMIT_LABEL_FIELD_NUMBER: _builtins.int
|
|
NOTIFY_ON_CANCEL_FIELD_NUMBER: _builtins.int
|
|
STATE_FIELD_NUMBER: _builtins.int
|
|
ICON_URL_FIELD_NUMBER: _builtins.int
|
|
callback_id: _builtins.str
|
|
title: _builtins.str
|
|
introduction_text: _builtins.str
|
|
submit_label: _builtins.str
|
|
notify_on_cancel: _builtins.bool
|
|
state: _builtins.str
|
|
icon_url: _builtins.str
|
|
@_builtins.property
|
|
def elements(self) -> _containers.RepeatedCompositeFieldContainer[Global___DialogElement]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
callback_id: _builtins.str = ...,
|
|
title: _builtins.str = ...,
|
|
introduction_text: _builtins.str = ...,
|
|
elements: _abc.Iterable[Global___DialogElement] | None = ...,
|
|
submit_label: _builtins.str = ...,
|
|
notify_on_cancel: _builtins.bool = ...,
|
|
state: _builtins.str = ...,
|
|
icon_url: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["callback_id", b"callback_id", "elements", b"elements", "icon_url", b"icon_url", "introduction_text", b"introduction_text", "notify_on_cancel", b"notify_on_cancel", "state", b"state", "submit_label", b"submit_label", "title", b"title"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___Dialog: _TypeAlias = Dialog # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DialogElement(_message.Message):
|
|
"""DialogElement represents an element in a dialog.
|
|
Maps to model.DialogElement in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
DISPLAY_NAME_FIELD_NUMBER: _builtins.int
|
|
NAME_FIELD_NUMBER: _builtins.int
|
|
TYPE_FIELD_NUMBER: _builtins.int
|
|
SUBTYPE_FIELD_NUMBER: _builtins.int
|
|
DEFAULT_FIELD_NUMBER: _builtins.int
|
|
PLACEHOLDER_FIELD_NUMBER: _builtins.int
|
|
HELP_TEXT_FIELD_NUMBER: _builtins.int
|
|
OPTIONAL_FIELD_NUMBER: _builtins.int
|
|
MIN_LENGTH_FIELD_NUMBER: _builtins.int
|
|
MAX_LENGTH_FIELD_NUMBER: _builtins.int
|
|
DATA_SOURCE_FIELD_NUMBER: _builtins.int
|
|
OPTIONS_FIELD_NUMBER: _builtins.int
|
|
display_name: _builtins.str
|
|
name: _builtins.str
|
|
type: _builtins.str
|
|
subtype: _builtins.str
|
|
default: _builtins.str
|
|
placeholder: _builtins.str
|
|
help_text: _builtins.str
|
|
optional: _builtins.bool
|
|
min_length: _builtins.int
|
|
max_length: _builtins.int
|
|
data_source: _builtins.str
|
|
@_builtins.property
|
|
def options(self) -> _containers.RepeatedCompositeFieldContainer[Global___DialogElementOption]: ...
|
|
def __init__(
|
|
self,
|
|
*,
|
|
display_name: _builtins.str = ...,
|
|
name: _builtins.str = ...,
|
|
type: _builtins.str = ...,
|
|
subtype: _builtins.str = ...,
|
|
default: _builtins.str = ...,
|
|
placeholder: _builtins.str = ...,
|
|
help_text: _builtins.str = ...,
|
|
optional: _builtins.bool = ...,
|
|
min_length: _builtins.int = ...,
|
|
max_length: _builtins.int = ...,
|
|
data_source: _builtins.str = ...,
|
|
options: _abc.Iterable[Global___DialogElementOption] | None = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["data_source", b"data_source", "default", b"default", "display_name", b"display_name", "help_text", b"help_text", "max_length", b"max_length", "min_length", b"min_length", "name", b"name", "optional", b"optional", "options", b"options", "placeholder", b"placeholder", "subtype", b"subtype", "type", b"type"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DialogElement: _TypeAlias = DialogElement # noqa: Y015
|
|
|
|
@_typing.final
|
|
class DialogElementOption(_message.Message):
|
|
"""DialogElementOption represents an option in a dialog element.
|
|
Maps to model.DialogElementOption in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
TEXT_FIELD_NUMBER: _builtins.int
|
|
VALUE_FIELD_NUMBER: _builtins.int
|
|
text: _builtins.str
|
|
value: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
text: _builtins.str = ...,
|
|
value: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["text", b"text", "value", b"value"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___DialogElementOption: _TypeAlias = DialogElementOption # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PluginClusterEvent(_message.Message):
|
|
"""PluginClusterEvent represents a plugin cluster event.
|
|
Maps to model.PluginClusterEvent in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ID_FIELD_NUMBER: _builtins.int
|
|
DATA_FIELD_NUMBER: _builtins.int
|
|
id: _builtins.str
|
|
data: _builtins.bytes
|
|
def __init__(
|
|
self,
|
|
*,
|
|
id: _builtins.str = ...,
|
|
data: _builtins.bytes = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data", "id", b"id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PluginClusterEvent: _TypeAlias = PluginClusterEvent # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PluginClusterEventSendOptions(_message.Message):
|
|
"""PluginClusterEventSendOptions contains options for sending cluster events.
|
|
Maps to model.PluginClusterEventSendOptions in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
SEND_TYPE_FIELD_NUMBER: _builtins.int
|
|
TARGET_ID_FIELD_NUMBER: _builtins.int
|
|
send_type: _builtins.str
|
|
""""reliable", "best_effort" """
|
|
target_id: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
send_type: _builtins.str = ...,
|
|
target_id: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["send_type", b"send_type", "target_id", b"target_id"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PluginClusterEventSendOptions: _TypeAlias = PluginClusterEventSendOptions # noqa: Y015
|
|
|
|
@_typing.final
|
|
class PushNotification(_message.Message):
|
|
"""PushNotification represents a push notification.
|
|
Maps to model.PushNotification in Go.
|
|
"""
|
|
|
|
DESCRIPTOR: _descriptor.Descriptor
|
|
|
|
ACK_ID_FIELD_NUMBER: _builtins.int
|
|
PLATFORM_FIELD_NUMBER: _builtins.int
|
|
SERVER_ID_FIELD_NUMBER: _builtins.int
|
|
DEVICE_ID_FIELD_NUMBER: _builtins.int
|
|
POST_ID_FIELD_NUMBER: _builtins.int
|
|
CATEGORY_FIELD_NUMBER: _builtins.int
|
|
SOUND_FIELD_NUMBER: _builtins.int
|
|
MESSAGE_FIELD_NUMBER: _builtins.int
|
|
BADGE_FIELD_NUMBER: _builtins.int
|
|
CONT_AVA_FIELD_NUMBER: _builtins.int
|
|
TEAM_ID_FIELD_NUMBER: _builtins.int
|
|
CHANNEL_ID_FIELD_NUMBER: _builtins.int
|
|
ROOT_ID_FIELD_NUMBER: _builtins.int
|
|
SENDER_ID_FIELD_NUMBER: _builtins.int
|
|
SENDER_NAME_FIELD_NUMBER: _builtins.int
|
|
OVERRIDE_USERNAME_FIELD_NUMBER: _builtins.int
|
|
OVERRIDE_ICON_URL_FIELD_NUMBER: _builtins.int
|
|
FROM_WEBHOOK_FIELD_NUMBER: _builtins.int
|
|
VERSION_FIELD_NUMBER: _builtins.int
|
|
IS_CRT_FIELD_NUMBER: _builtins.int
|
|
CHANNEL_NAME_FIELD_NUMBER: _builtins.int
|
|
TYPE_FIELD_NUMBER: _builtins.int
|
|
SUB_TYPE_FIELD_NUMBER: _builtins.int
|
|
ack_id: _builtins.str
|
|
platform: _builtins.str
|
|
server_id: _builtins.str
|
|
device_id: _builtins.str
|
|
post_id: _builtins.str
|
|
category: _builtins.str
|
|
sound: _builtins.str
|
|
message: _builtins.str
|
|
badge: _builtins.str
|
|
cont_ava: _builtins.str
|
|
team_id: _builtins.str
|
|
channel_id: _builtins.str
|
|
root_id: _builtins.str
|
|
sender_id: _builtins.str
|
|
sender_name: _builtins.str
|
|
override_username: _builtins.str
|
|
override_icon_url: _builtins.str
|
|
from_webhook: _builtins.str
|
|
version: _builtins.str
|
|
is_crt: _builtins.bool
|
|
channel_name: _builtins.str
|
|
type: _builtins.str
|
|
sub_type: _builtins.str
|
|
def __init__(
|
|
self,
|
|
*,
|
|
ack_id: _builtins.str = ...,
|
|
platform: _builtins.str = ...,
|
|
server_id: _builtins.str = ...,
|
|
device_id: _builtins.str = ...,
|
|
post_id: _builtins.str = ...,
|
|
category: _builtins.str = ...,
|
|
sound: _builtins.str = ...,
|
|
message: _builtins.str = ...,
|
|
badge: _builtins.str = ...,
|
|
cont_ava: _builtins.str = ...,
|
|
team_id: _builtins.str = ...,
|
|
channel_id: _builtins.str = ...,
|
|
root_id: _builtins.str = ...,
|
|
sender_id: _builtins.str = ...,
|
|
sender_name: _builtins.str = ...,
|
|
override_username: _builtins.str = ...,
|
|
override_icon_url: _builtins.str = ...,
|
|
from_webhook: _builtins.str = ...,
|
|
version: _builtins.str = ...,
|
|
is_crt: _builtins.bool = ...,
|
|
channel_name: _builtins.str = ...,
|
|
type: _builtins.str = ...,
|
|
sub_type: _builtins.str = ...,
|
|
) -> None: ...
|
|
_ClearFieldArgType: _TypeAlias = _typing.Literal["ack_id", b"ack_id", "badge", b"badge", "category", b"category", "channel_id", b"channel_id", "channel_name", b"channel_name", "cont_ava", b"cont_ava", "device_id", b"device_id", "from_webhook", b"from_webhook", "is_crt", b"is_crt", "message", b"message", "override_icon_url", b"override_icon_url", "override_username", b"override_username", "platform", b"platform", "post_id", b"post_id", "root_id", b"root_id", "sender_id", b"sender_id", "sender_name", b"sender_name", "server_id", b"server_id", "sound", b"sound", "sub_type", b"sub_type", "team_id", b"team_id", "type", b"type", "version", b"version"] # noqa: Y015
|
|
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
|
|
Global___PushNotification: _TypeAlias = PushNotification # noqa: Y015
|