FS
Типа
["value1", "value2", ...]
Size: a a a
FS
FS
MG
FS
MG
FS
MG
FS
FS
MG
FS
MG
MG
val request = json {
"name" to name
"apartment_ids" to jsonArray { flats }
}
FS
val request = json {
"name" to name
"apartment_ids" to jsonArray { flats }
}
MG
val request = json {
"name" to name
"apartment_ids" to JsonArray(flats)
}
FS
val request = json {
"name" to name
"apartment_ids" to JsonArray(flats)
}
FS
FS
/**
* Adds [this] value to the current [JsonArray] as [JsonPrimitive].
*/
public operator fun String?.unaryPlus() {
content.add(JsonPrimitive(this))
}
FS