/* Options: Date: 2025-07-01 17:06:28 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VossAsyncOperations.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/voss/asyncOperations", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static 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.") public UUID CompanyId = null; /** * Available values : CreateInvoice */ @ApiMember(Description="Available values : CreateInvoice") public String SearchText = null; /** * Available values : Pending, Started, Completed, Failed, Cancelled */ @ApiMember(Description="Available values : Pending, Started, Completed, Failed, Cancelled") public String Status = null; public UUID getCompanyId() { return CompanyId; } public VossAsyncOperations setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getSearchText() { return SearchText; } public VossAsyncOperations setSearchText(String value) { this.SearchText = value; return this; } public String getStatus() { return Status; } public VossAsyncOperations setStatus(String value) { this.Status = value; return this; } } }