LicenseResponse

data class LicenseResponse(val identifier: String? = null, val name: String? = null, val url: String? = null)

The license information for the API.

Constructors

Link copied to clipboard
constructor(identifier: String? = null, name: String? = null, url: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val identifier: String? = null

SPDX license information for the API. The identifier field is mutually exclusive of the URL field.

Link copied to clipboard
val name: String? = null

Name of the license.

Link copied to clipboard
val url: String? = null

URL pointing to the license details. The URL field is mutually exclusive of the identifier field.