``` @JsonInclude(JsonInclude.Include.NON_NULL) dat...
# announcements
m
Copy code
@JsonInclude(JsonInclude.Include.NON_NULL)
data class ServiceFeaturesItem(

	@field:JsonProperty("flag_value")
	val flagValue: String? = null,

	@field:JsonProperty("effective_flag_value")
	val effectiveFlagValue: String? = null,

	@field:JsonProperty("name")
	val name: String? = null,

	@field:JsonProperty("attributes")
	val attributes: List<Any?>? = null <<<<
)