@@ -26,16 +26,17 @@ internal data class Antenna(
2626 @SerialName(value = " id" ) val id : kotlin.String ,
2727 @SerialName(value = " createdAt" ) val createdAt : kotlin.String ,
2828 @SerialName(value = " name" ) val name : kotlin.String ,
29- @SerialName(value = " keywords" ) val keywords : kotlin.collections.List <kotlin.collections.List <kotlin.String >>,
30- @SerialName(value = " excludeKeywords" ) val excludeKeywords : kotlin.collections.List <kotlin.collections.List <kotlin.String >>,
31- @SerialName(value = " src" ) val src : Antenna .Src ,
29+ @SerialName(value = " keywords" ) val keywords : kotlin.collections.List <kotlin.collections.List <kotlin.String >> = emptyList(),
30+ @SerialName(value = " excludeKeywords" ) val excludeKeywords : kotlin.collections.List <kotlin.collections.List <kotlin.String >> =
31+ emptyList(),
32+ // @SerialName(value = "src") val src: Antenna.Src,
3233 @SerialName(value = " userListId" ) val userListId : kotlin.String? = null ,
33- @SerialName(value = " users" ) val users : kotlin.collections.List <kotlin.String >,
34+ @SerialName(value = " users" ) val users : kotlin.collections.List <kotlin.String > = emptyList() ,
3435 @SerialName(value = " caseSensitive" ) val caseSensitive : kotlin.Boolean = false ,
35- @SerialName(value = " notify" ) val notify : kotlin.Boolean ,
36+ @SerialName(value = " notify" ) val notify : kotlin.Boolean = false ,
3637 @SerialName(value = " withReplies" ) val withReplies : kotlin.Boolean = false ,
37- @SerialName(value = " withFile" ) val withFile : kotlin.Boolean ,
38- @SerialName(value = " isActive" ) val isActive : kotlin.Boolean ,
38+ @SerialName(value = " withFile" ) val withFile : kotlin.Boolean = false ,
39+ @SerialName(value = " isActive" ) val isActive : kotlin.Boolean = false ,
3940 @SerialName(value = " hasUnreadNote" ) val hasUnreadNote : kotlin.Boolean = false ,
4041) {
4142 /* *
0 commit comments