TechStacks!

<back to all web services

UpdateOrganizationCategory

Organization
Requires Authentication
The following routes are available for this service:
PUT/orgs/{OrganizationId}/categories/{Id}
import 'package:servicestack/servicestack.dart';

class UpdateOrganizationCategoryResponse implements IConvertible
{
    ResponseStatus? responseStatus;

    UpdateOrganizationCategoryResponse({this.responseStatus});
    UpdateOrganizationCategoryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
    };

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

class UpdateOrganizationCategory implements IPut, IConvertible
{
    int? organizationId;
    int? id;
    String? name;
    String? slug;
    String? description;
    List<int>? technologyIds;

    UpdateOrganizationCategory({this.organizationId,this.id,this.name,this.slug,this.description,this.technologyIds});
    UpdateOrganizationCategory.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        organizationId = json['organizationId'];
        id = json['id'];
        name = json['name'];
        slug = json['slug'];
        description = json['description'];
        technologyIds = JsonConverters.fromJson(json['technologyIds'],'List<int>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'organizationId': organizationId,
        'id': id,
        'name': name,
        'slug': slug,
        'description': description,
        'technologyIds': JsonConverters.toJson(technologyIds,'List<int>',context!)
    };

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

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

Dart UpdateOrganizationCategory 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 /orgs/{OrganizationId}/categories/{Id} HTTP/1.1 
Host: techstacks.io 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	organizationId: 0,
	id: 0,
	name: String,
	slug: String,
	description: String,
	technologyIds: 
	[
		0
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}