mike_shysh
11/06/2017, 10:17 AM@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 <<<<
)