/* Options: Date: 2026-09-24 08:39:37 SwiftVersion: 6.0 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetVossSubscriptions.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/voss/subscriptions", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public class GetVossSubscriptions : Codable { /** * The company id; If not passed all subscriptions wll be returned */ // @ApiMember(Description="The company id; If not passed all subscriptions wll be returned") public var companyId:String? /** * The package id; if not passed the configured BokaMera package will be used. */ // @ApiMember(Description="The package id; if not passed the configured BokaMera package will be used.") public var packageId:String? required public init(){} }