/* Options: Date: 2025-07-01 19:41:19 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: UpdateCompanyInvoiceArticle.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/company/invoice/article", "PUT") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class UpdateCompanyInvoiceArticle : IReturn, Codable { public typealias Return = CompanyInvoiceArticleQueryResponse /** * Invoice article No in Db. */ // @ApiMember(Description="Invoice article No in Db.", IsRequired=true) public var id:Int /** * Invoice article Name */ // @ApiMember(Description="Invoice article Name") public var name:String /** * Invoice article Name */ // @ApiMember(Description="Invoice article Name") public var licenseTypeId:Int? /** * Invoice LicenseProductTypeId */ // @ApiMember(Description="Invoice LicenseProductTypeId") public var licenseProductTypeId:Int? /** * Invoice article is TIER license */ // @ApiMember(Description="Invoice article is TIER license") public var isMainLicense:Bool? /** * Invoice VossProductGroupId reference */ // @ApiMember(Description="Invoice VossProductGroupId reference") public var vossProductGroupId:String? required public init(){} } public class CompanyInvoiceArticleQueryResponse : Codable { public var name:String public var licenseTypeId:Int? public var licenseProductTypeId:Int public var id:Int required public init(){} }