/* Options: Date: 2025-05-05 01:05:37 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppGetScheduleInformation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class AppScheduleInformation implements IConvertible { String? timeZoneId; List? customerStates; AppScheduleInformation({this.timeZoneId,this.customerStates}); AppScheduleInformation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { timeZoneId = json['timeZoneId']; customerStates = JsonConverters.fromJson(json['customerStates'],'List',context!); return this; } Map toJson() => { 'timeZoneId': timeZoneId, 'customerStates': JsonConverters.toJson(customerStates,'List',context!) }; getTypeName() => "AppScheduleInformation"; TypeContext? context = _ctx; } // @Route("/portal/schedule") class AppGetScheduleInformation implements IReturn, IConvertible, IGet { String? accountId; String? customerId; String? endpointId; AppGetScheduleInformation({this.accountId,this.customerId,this.endpointId}); AppGetScheduleInformation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountId = json['accountId']; customerId = json['customerId']; endpointId = json['endpointId']; return this; } Map toJson() => { 'accountId': accountId, 'customerId': customerId, 'endpointId': endpointId }; createResponse() => AppScheduleInformation(); getResponseTypeName() => "AppScheduleInformation"; getTypeName() => "AppGetScheduleInformation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'AppScheduleInformation': TypeInfo(TypeOf.Class, create:() => AppScheduleInformation()), 'AppGetScheduleInformation': TypeInfo(TypeOf.Class, create:() => AppGetScheduleInformation()), });