/* Options: Date: 2026-07-08 19:41:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StaffApplyPageRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/staff/apply/{PostingUID}", "GET") class StaffApplyPageRequest implements IConvertible, IGet { String? PostingUID; StaffApplyPageRequest({this.PostingUID}); StaffApplyPageRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PostingUID = json['PostingUID']; return this; } Map toJson() => { 'PostingUID': PostingUID }; getTypeName() => "StaffApplyPageRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'StaffApplyPageRequest': TypeInfo(TypeOf.Class, create:() => StaffApplyPageRequest()), });