TODO World

<back to all web services

UpdateTodo

The following routes are available for this service:
PUT/todos/{Id}
import 'package:servicestack/servicestack.dart';

// @DataContract
class UpdateTodo implements IConvertible
{
    // @DataMember(Order=1)
    int? id;

    // @DataMember(Order=2)
    String? title;

    // @DataMember(Order=3)
    int? order;

    // @DataMember(Order=4)
    bool? completed;

    UpdateTodo({this.id,this.title,this.order,this.completed});
    UpdateTodo.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        title = json['title'];
        order = json['order'];
        completed = json['completed'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'title': title,
        'order': order,
        'completed': completed
    };

    getTypeName() => "UpdateTodo";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'todoworld.servicestack.net', types: <String, TypeInfo> {
    'UpdateTodo': TypeInfo(TypeOf.Class, create:() => UpdateTodo()),
});

Dart UpdateTodo DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

PUT /todos/{Id} HTTP/1.1 
Host: todoworld.servicestack.net 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"id":0,"title":"String","order":0,"completed":false}