/* Options: Date: 2025-12-19 06:33:36 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: setTouchLoginRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class setTouchLoginResponse implements IConvertible { ResponseStatus? ResponseStatus; setTouchLoginResponse({this.ResponseStatus}); setTouchLoginResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "setTouchLoginResponse"; TypeContext? context = _ctx; } // @Route("/v1/SetTouchLogin/{username}/{deviceUID}", "POST,OPTIONS") class setTouchLoginRequest implements IReturn, IConvertible, IPost { String? username; String? deviceUID; setTouchLoginRequest({this.username,this.deviceUID}); setTouchLoginRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { username = json['username']; deviceUID = json['deviceUID']; return this; } Map toJson() => { 'username': username, 'deviceUID': deviceUID }; createResponse() => setTouchLoginResponse(); getResponseTypeName() => "setTouchLoginResponse"; getTypeName() => "setTouchLoginRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dynamics.trendsic.com', types: { 'setTouchLoginResponse': TypeInfo(TypeOf.Class, create:() => setTouchLoginResponse()), 'setTouchLoginRequest': TypeInfo(TypeOf.Class, create:() => setTouchLoginRequest()), });