Skip to content

Commit

Permalink
クラスのメンバーの forwardingFilterOption は deprecated にする
Browse files Browse the repository at this point in the history
  • Loading branch information
zztkm committed Dec 13, 2024
1 parent d265311 commit 98f91e4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ class SignalingChannelImpl @JvmOverloads constructor(
private val signalingNotifyMetadata: Any? = null,
private val connectDataChannels: List<Map<String, Any>>? = null,
private val redirect: Boolean = false,
@Deprecated(
"2025 年 12 月に廃止します。",
ReplaceWith("forwardingFiltersOption"),
DeprecationLevel.WARNING
)
private val forwardingFilterOption: SoraForwardingFilterOption? = null,
private val forwardingFiltersOption: List<SoraForwardingFilterOption>? = null,
) : SignalingChannel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ data class ConnectMessage(
@SerializedName("audio_streaming_language_code")
val audioStreamingLanguageCode: String? = null,
@SerializedName("redirect") var redirect: Boolean? = null,
@Deprecated(
"2025 年 12 月に廃止します。",
ReplaceWith("forwardingFiltersOption"),
DeprecationLevel.WARNING
)
@SerializedName("forwarding_filter") val forwardingFilter: Any? = null,
@SerializedName("forwarding_filters") val forwardingFilters: List<Any>? = null
)
Expand Down

0 comments on commit 98f91e4

Please sign in to comment.