... | @@ -123,4 +123,16 @@ definitions: |
... | @@ -123,4 +123,16 @@ definitions: |
|
### Protocol Buffer Schema
|
|
### Protocol Buffer Schema
|
|
#### x-protobuf-index
|
|
#### x-protobuf-index
|
|
|
|
|
|
For assigning field numbers: https://developers.google.com/protocol-buffers/docs/proto3#assigning_field_numbers |
|
For assigning field numbers: https://developers.google.com/protocol-buffers/docs/proto3#assigning_field_numbers
|
|
\ No newline at end of file |
|
|
|
|
|
### Swift
|
|
|
|
#### x-swift-hastable
|
|
|
|
|
|
|
|
To extends the model with `Hashable`, e.g.
|
|
|
|
```
|
|
|
|
public struct Pet: Codable {
|
|
|
|
```
|
|
|
|
becomes
|
|
|
|
```
|
|
|
|
public struct Pet: Codable, Hashable {
|
|
|
|
``` |
|
|
|
\ No newline at end of file |