| GET | /v1/staff/apply/{PostingUID} |
|---|
import 'package:servicestack/servicestack.dart';
class StaffApplyPageRequest implements IConvertible
{
String? PostingUID;
StaffApplyPageRequest({this.PostingUID});
StaffApplyPageRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
PostingUID = json['PostingUID'];
return this;
}
Map<String, dynamic> toJson() => {
'PostingUID': PostingUID
};
getTypeName() => "StaffApplyPageRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'StaffApplyPageRequest': TypeInfo(TypeOf.Class, create:() => StaffApplyPageRequest()),
});
Dart StaffApplyPageRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/staff/apply/{PostingUID} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml