you would set the ticket value to whatever it is you want to pass. it should be
serialized or binary. so it could be utf-8 or it could be a serialized protobuf
message. whatever it is, the server side should know how to unpack it. If
you're talking to an existing server look at what it's unpacki
Thanks Bryce! Almost there 🙂 so i can make request to ListFlights, but for
DoGet i need to pass the ticket data
After few attempts, I still can't figure out how to pass the ticket data to
DoGet, I see the Ticket has this proto schema.
message Ticket {
bytes ticket = 1;
}
_