From e3a7c572de76359202769cae910f861643c0c32c Mon Sep 17 00:00:00 2001 From: 2D Date: Wed, 2 Jun 2021 05:53:43 -0400 Subject: [PATCH] Add missing session start limit field (#306) - Adds the max_concurrency field to the session start limit data class --- rest/src/main/kotlin/json/response/Gateway.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rest/src/main/kotlin/json/response/Gateway.kt b/rest/src/main/kotlin/json/response/Gateway.kt index 4a77abb7617..4a81033e106 100644 --- a/rest/src/main/kotlin/json/response/Gateway.kt +++ b/rest/src/main/kotlin/json/response/Gateway.kt @@ -19,5 +19,7 @@ data class SessionStartLimitResponse( val total: Int, val remaining: Int, @SerialName("reset_after") - val resetAfter: Int -) \ No newline at end of file + val resetAfter: Int, + @SerialName("max_concurrency") + val maxConcurrency: Int +)