/* Options: Date: 2024-06-26 09:20:09 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: ExportInvoice.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/billing/company/invoices/{InvoiceId}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ExportInvoice : ICompany { /** * Id of the invoice */ @ApiMember(Description="Id of the invoice", IsRequired=true, ParameterType="path") var InvoiceId:Int? = null /** * 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 } open interface ICompany { var CompanyId:UUID? }