package io.apibuilder.spec.v0.models import com.fasterxml.jackson.annotation.JsonIgnoreProperties import com.fasterxml.jackson.annotation.JsonProperty import java.io.Serializable import kotlin.String /** * This code was generated by [models.generator.kotlin.KotlinGenerator] * Describes the software license contact for this service */ @JsonIgnoreProperties(ignoreUnknown=true) data class License( @JsonProperty("name") @get:JsonProperty("name") val name: String, @JsonProperty("url") @get:JsonProperty("url") val url: String? ) : Serializable { fun toJsonString(): String = io.apibuilder.spec.v0.models.JacksonObjectMapperFactory.create().writeValueAsString(this) companion object { fun parseJson(json: String): License = io.apibuilder.spec.v0.models.JacksonObjectMapperFactory.create().readValue( json, License::class.java) } }