BokaMera.API.Host

<back to all web services

ServiceGroupsQuery

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin
The following routes are available for this service:
GET/services/groupsGet all grouping headers for servicesGet all service group headers
import 'package:servicestack/servicestack.dart';

class ServiceGroupsQueryResponse implements IConvertible
{
    String? Name;

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

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

    Map<String, dynamic> toJson() => {
        'Name': Name
    };

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

// @ValidateRequest(Validator="IsAuthenticated")
class ServiceGroupsQuery implements IConvertible
{
    /**
    * Company to show service groups for
    */
    // @ApiMember(Description="Company to show service groups for", ParameterType="query")
    String? CompanyId;

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

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

    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId
    };

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

TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
    'ServiceGroupsQueryResponse': TypeInfo(TypeOf.Class, create:() => ServiceGroupsQueryResponse()),
    'ServiceGroupsQuery': TypeInfo(TypeOf.Class, create:() => ServiceGroupsQuery()),
});

Dart ServiceGroupsQuery 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.

GET /services/groups HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Name: String
}