/* Options: Date: 2025-12-04 03:52:46 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: VossAsyncOperations.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/voss/asyncOperations", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class VossAsyncOperations implements IConvertible, IGet { /** * 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; /** * Available values : CreateInvoice */ // @ApiMember(Description="Available values : CreateInvoice") String? SearchText; /** * Available values : Pending, Started, Completed, Failed, Cancelled */ // @ApiMember(Description="Available values : Pending, Started, Completed, Failed, Cancelled") String? Status; VossAsyncOperations({this.CompanyId,this.SearchText,this.Status}); VossAsyncOperations.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; SearchText = json['SearchText']; Status = json['Status']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'SearchText': SearchText, 'Status': Status }; getTypeName() => "VossAsyncOperations"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'VossAsyncOperations': TypeInfo(TypeOf.Class, create:() => VossAsyncOperations()), });