-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtinyfaas_pb2.pyi
44 lines (36 loc) · 1.16 KB
/
tinyfaas_pb2.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
@generated by mypy-protobuf. Do not edit manually!
isort:skip_file
"""
import builtins
import google.protobuf.descriptor
import google.protobuf.message
import typing
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
@typing.final
class Data(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
FUNCTIONIDENTIFIER_FIELD_NUMBER: builtins.int
DATA_FIELD_NUMBER: builtins.int
functionIdentifier: builtins.str
data: builtins.str
def __init__(
self,
*,
functionIdentifier: builtins.str = ...,
data: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["data", b"data", "functionIdentifier", b"functionIdentifier"]) -> None: ...
global___Data = Data
@typing.final
class Response(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor
RESPONSE_FIELD_NUMBER: builtins.int
response: builtins.str
def __init__(
self,
*,
response: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing.Literal["response", b"response"]) -> None: ...
global___Response = Response