/* Options: Date: 2026-06-04 03:33:55 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: CalendarContactViewRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/v1/Calendar/Contact/{ContactId}", "GET,OPTIONS") class CalendarContactViewRequest implements IConvertible, IGet { int? ContactId; CalendarContactViewRequest({this.ContactId}); CalendarContactViewRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ContactId = json['ContactId']; return this; } Map toJson() => { 'ContactId': ContactId }; getTypeName() => "CalendarContactViewRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'CalendarContactViewRequest': TypeInfo(TypeOf.Class, create:() => CalendarContactViewRequest()), });