| GET | /{Workspace}/Sequence/OrderNumber | ||
|---|---|---|---|
| GET | /{Workspace}/Sequence/TaskSequenceNumber | 
import 'package:servicestack/servicestack.dart';
/**
* Returns a block of numbers from a sequence for the workspace and increments the sequence to the starting number for the next block.Usage: GET /{Workspace}/Sequence/OrderNumber?count=10000Or:    GET /{Workspace}/Sequence/TaskSequenceNumber
*/
class OrderNumber implements IConvertible
{
    String? Workspace;
    int? Start;
    int? End;
    OrderNumber({this.Workspace,this.Start,this.End});
    OrderNumber.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        Workspace = json['Workspace'];
        Start = json['Start'];
        End = json['End'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'Workspace': Workspace,
        'Start': Start,
        'End': End
    };
    getTypeName() => "OrderNumber";
    TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
    'OrderNumber': TypeInfo(TypeOf.Class, create:() => OrderNumber()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /{Workspace}/Sequence/OrderNumber HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv