Trendsic Platform Service

<back to all web services

StaffJobFeedRequest

The following routes are available for this service:
GET/v1/staff/jobs/feed
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class StaffJobFeedRequest implements IConvertible
{
    String? T;

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

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

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

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

TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
    'StaffJobFeedRequest': TypeInfo(TypeOf.Class, create:() => StaffJobFeedRequest()),
});

Dart StaffJobFeedRequest DTOs

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

HTTP + OTHER

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

GET /v1/staff/jobs/feed HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsonl