DELETE | /orgs/{OrganizationId}/categories/{Id} |
---|
import 'package:servicestack/servicestack.dart';
class DeleteOrganizationCategory implements IDelete, IConvertible
{
int? organizationId;
int? id;
DeleteOrganizationCategory({this.organizationId,this.id});
DeleteOrganizationCategory.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
organizationId = json['organizationId'];
id = json['id'];
return this;
}
Map<String, dynamic> toJson() => {
'organizationId': organizationId,
'id': id
};
getTypeName() => "DeleteOrganizationCategory";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
'DeleteOrganizationCategory': TypeInfo(TypeOf.Class, create:() => DeleteOrganizationCategory()),
});
Dart DeleteOrganizationCategory DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /orgs/{OrganizationId}/categories/{Id} HTTP/1.1 Host: techstacks.io Accept: text/csv