/* Options: Date: 2025-12-14 04:31:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetVossSubscriptionsScheduledChanges.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/voss/subscriptions/scheduledChanges", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class GetVossSubscriptionsScheduledChanges implements IConvertible, IGet { /** * The company id; If not passed all subscriptions wll be returned */ // @ApiMember(Description="The company id; If not passed all subscriptions wll be returned") String? CompanyId; GetVossSubscriptionsScheduledChanges({this.CompanyId}); GetVossSubscriptionsScheduledChanges.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; return this; } Map toJson() => { 'CompanyId': CompanyId }; getTypeName() => "GetVossSubscriptionsScheduledChanges"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'GetVossSubscriptionsScheduledChanges': TypeInfo(TypeOf.Class, create:() => GetVossSubscriptionsScheduledChanges()), });