Get desktop application:
View/edit binary Protocol Buffers messages
Service Todos is a microservice backend for todo entries.
CreateTodo creates a new todo and returns the created todo with an id
ToDo is the ToDo to create. The ID will be set automatically.
DeleteAllTodos deletes all todos in the system
DeleteTodo deletes a todo in the system
GetTodo returns a single todo based on an id
ListTodos lists all todos
(message has no fields)
UpdateTodo updates a todo
Todo represents a single todo item. It has an id, url and title, and can be completed and ordered.
Used as response type in: Todos.CreateTodo, Todos.GetTodo, Todos.UpdateTodo
Used as field type in: , ,
ID is the ID of the Todo
Title is a text field describing the ToDo
URL is the URL to get the full ToDo information