/* Options: Date: 2026-06-06 01:29:38 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://link.dc8.unico3.cloud //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImpostaStatoSessioneMobile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/assistenza/interventi/{Id}/stato/sessione-mobile", "PUT") // @Route("/assistenza/interventi/stato/sessione-mobile", "PUT") class ImpostaStatoSessioneMobile implements IReturnVoid, IConvertible { int? Id; bool? IsChiusa; ImpostaStatoSessioneMobile({this.Id,this.IsChiusa}); ImpostaStatoSessioneMobile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; IsChiusa = json['IsChiusa']; return this; } Map toJson() => { 'Id': Id, 'IsChiusa': IsChiusa }; createResponse() {} getTypeName() => "ImpostaStatoSessioneMobile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'link.dc8.unico3.cloud', types: { 'ImpostaStatoSessioneMobile': TypeInfo(TypeOf.Class, create:() => ImpostaStatoSessioneMobile()), });