A ProtoBuffers service declaration.
| 107 | |
| 108 | @dataclass |
| 109 | class ProtoService: |
| 110 | """A ProtoBuffers service declaration.""" |
| 111 | |
| 112 | name: str |
| 113 | methods: List["ProtoRpcMethod"] = field(default_factory=list) |
| 114 | options: Dict[str, object] = field(default_factory=dict) |
| 115 | line: int = 0 |
| 116 | column: int = 0 |
| 117 | |
| 118 | |
| 119 | @dataclass |