/* Options: Date: 2025-04-24 17:03:46 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: VossAsyncOperations.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/voss/asyncOperations", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class VossAsyncOperations { /** * 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.") var CompanyId:UUID? = null /** * Available values : CreateInvoice */ @ApiMember(Description="Available values : CreateInvoice") var SearchText:String? = null /** * Available values : Pending, Started, Completed, Failed, Cancelled */ @ApiMember(Description="Available values : Pending, Started, Completed, Failed, Cancelled") var Status:String? = null }