// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//// SPDX-License-Identifier: EUPL-1.2
/// The current credentials of the livekit instance
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]pubstructCredentials{/// The room id
pubroom: String,
/// The token for the service / frontend
pubtoken: String,
/// The "public" livekit URL
pubpublic_url: String,
/// The livekit URL to be used by services
#[serde(skip_serializing_if ="Option::is_none")]pubservice_url:Option<String>,
}