/* Options: Date: 2026-02-27 02:47:51 SwiftVersion: 6.0 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetGoogleMeetAuthUrl.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/google/meet/auth/{ResourceId}", "GET") // @ValidateRequest(Validator="IsAuthenticated") public class GetGoogleMeetAuthUrl : IReturn, ICompany, Codable { public typealias Return = GoogleMeetAuthUrlResponse /** * 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 var companyId:String? /** * The resource id to connect the Google account to. Use 0 for a company-wide default. */ // @ApiMember(Description="The resource id to connect the Google account to. Use 0 for a company-wide default.", IsRequired=true, ParameterType="path") public var resourceId:Int? required public init(){} } public class GoogleMeetAuthUrlResponse : Codable { public var authUrl:String? required public init(){} } public protocol ICompany { var companyId:String? { get set } }