/* Options: Date: 2026-02-27 02:48:05 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGoogleMeetAuthUrl.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/google/meet/auth/{ResourceId}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class GetGoogleMeetAuthUrl : IReturn, 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.") override var CompanyId:UUID? = null /** * 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") open var ResourceId:Int? = null companion object { private val responseType = GoogleMeetAuthUrlResponse::class.java } override fun getResponseType(): Any? = GetGoogleMeetAuthUrl.responseType } open class GoogleMeetAuthUrlResponse { open var AuthUrl:String? = null } interface ICompany { var CompanyId:UUID? }