/* Options: Date: 2025-06-08 16:33:10 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExportPayableEntityReport.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/articles/{InternalReferenceId}/reports", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class ExportPayableEntityReport : ICompany { /** * 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 /** * Id of the internal reference (booking, rebate code, etc) */ @ApiMember(Description="Id of the internal reference (booking, rebate code, etc)", IsRequired=true, ParameterType="path") var InternalReferenceId:String? = null var SendReceiptMethod:SendReceiptMethod? = null /** * Article type (Could be Service, rebate code types, etc.. */ @ApiMember(Description="Article type (Could be Service, rebate code types, etc..", IsRequired=true) var ArticleTypeId:Int? = null } open interface ICompany { var CompanyId:UUID? } enum class SendReceiptMethod(val value:Int) { Email(1), PdfExport(2), }