/* Options: Date: 2025-04-04 19:25:56 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteVossData.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/voss/delete", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class DeleteVossData implements IConvertible, IDelete { /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") String? CompanyId; bool? OnlySync; DeleteVossData({this.CompanyId,this.OnlySync}); DeleteVossData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; OnlySync = json['OnlySync']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'OnlySync': OnlySync }; getTypeName() => "DeleteVossData"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'DeleteVossData': TypeInfo(TypeOf.Class, create:() => DeleteVossData()), });