fix: Make Text a default field entity's type #678
This commit is contained in:
parent
37ab3cd26e
commit
86e6000478
|
@ -8,7 +8,7 @@ import kotlinx.serialization.json.JsonNames
|
|||
data class FieldEntity(
|
||||
@JsonNames("type")
|
||||
@SerialName("Type")
|
||||
val type: FieldTypeEntity,
|
||||
val type: FieldTypeEntity = FieldTypeEntity.Text,
|
||||
@JsonNames("name")
|
||||
@SerialName("Name")
|
||||
val name: String? = null,
|
||||
|
|
Loading…
Reference in New Issue