/* Options: Date: 2026-02-27 02:47:49 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: GetGoogleMeetStatus.* //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/status/{ResourceId}", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class GetGoogleMeetStatus : 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 check status for. Use 0 for company-wide default. */ @ApiMember(Description="The resource id to check status for. Use 0 for company-wide default.", IsRequired=true, ParameterType="path") open var ResourceId:Int? = null companion object { private val responseType = GoogleMeetStatusResponse::class.java } override fun getResponseType(): Any? = GetGoogleMeetStatus.responseType } open class GoogleMeetStatusResponse { open var Connected:Boolean? = null open var GoogleAccountEmail:String? = null open var CalendarId:String? = null open var ConnectedSince:Date? = null open var NeedsReauth:Boolean? = null } interface ICompany { var CompanyId:UUID? }