TechStacks!

<back to all web services

LockPost

Posts
Requires Authentication
The following routes are available for this service:
PUT/posts/{Id}/lock
import 'package:servicestack/servicestack.dart';

class LockPost implements IPut, IConvertible
{
    int? id;
    bool? lock;
    String? reason;

    LockPost({this.id,this.lock,this.reason});
    LockPost.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

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

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

TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
    'LockPost': TypeInfo(TypeOf.Class, create:() => LockPost()),
});

Dart LockPost DTOs

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

HTTP + JSV

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

PUT /posts/{Id}/lock HTTP/1.1 
Host: techstacks.io 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	lock: False,
	reason: String
}