An RPC method declaration.
| 93 | |
| 94 | @dataclass |
| 95 | class ProtoRpcMethod: |
| 96 | """An RPC method declaration.""" |
| 97 | |
| 98 | name: str |
| 99 | request_type: str |
| 100 | response_type: str |
| 101 | client_streaming: bool = False |
| 102 | server_streaming: bool = False |
| 103 | options: Dict[str, object] = field(default_factory=dict) |
| 104 | line: int = 0 |
| 105 | column: int = 0 |
| 106 | |
| 107 | |
| 108 | @dataclass |
no test coverage detected