MyApp

<back to all web services

UpdateTodo

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

class Todo implements IConvertible
{
    int? id;
    String? text;
    bool? isFinished;

    Todo({this.id,this.text,this.isFinished});
    Todo.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

    Map<String, dynamic> toJson() => {
        'id': id,
        'text': text,
        'isFinished': isFinished
    };

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

class UpdateTodo implements IPut, IConvertible
{
    int? id;
    // @Validate(Validator="NotEmpty")
    String? text;

    bool? isFinished;

    UpdateTodo({this.id,this.text,this.isFinished});
    UpdateTodo.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

    Map<String, dynamic> toJson() => {
        'id': id,
        'text': text,
        'isFinished': isFinished
    };

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

TypeContext _ctx = TypeContext(library: 'blazor_gallery.servicestack.net', types: <String, TypeInfo> {
    'Todo': TypeInfo(TypeOf.Class, create:() => Todo()),
    '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: blazor-gallery.servicestack.net 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"id":0,"text":"String","isFinished":false}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"id":0,"text":"String","isFinished":false}