templates/todo/api/java/src/main/java/com/microsoft/azure/simpletodo/model/TodoItem.java [160:178]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        return (
            "TodoItem(id=" +
            this.getId() +
            ", listId=" +
            this.getListId() +
            ", name=" +
            this.getName() +
            ", description=" +
            this.getDescription() +
            ", state=" +
            this.getState() +
            ", dueDate=" +
            this.getDueDate() +
            ", completedDate=" +
            this.getCompletedDate() +
            ")"
        );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



templates/todo/api/java-postgresql/src/main/java/com/microsoft/azure/simpletodo/model/TodoItem.java [168:186]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        return (
            "TodoItem(id=" +
            this.getId() +
            ", listId=" +
            this.getListId() +
            ", name=" +
            this.getName() +
            ", description=" +
            this.getDescription() +
            ", state=" +
            this.getState() +
            ", dueDate=" +
            this.getDueDate() +
            ", completedDate=" +
            this.getCompletedDate() +
            ")"
        );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



