View Source GitHub.License (GitHub REST API Client v0.3.3)

Provides struct and types for a License

Link to this section Summary

Link to this section Types

@type simple() :: %GitHub.License{
  __info__: map(),
  body: term(),
  conditions: term(),
  description: term(),
  featured: term(),
  html_url: String.t() | nil,
  implementation: term(),
  key: String.t(),
  limitations: term(),
  name: String.t(),
  node_id: String.t(),
  permissions: term(),
  spdx_id: String.t() | nil,
  url: String.t() | nil
}
@type t() :: %GitHub.License{
  __info__: map(),
  body: String.t(),
  conditions: [String.t()],
  description: String.t(),
  featured: boolean(),
  html_url: String.t(),
  implementation: String.t(),
  key: String.t(),
  limitations: [String.t()],
  name: String.t(),
  node_id: String.t(),
  permissions: [String.t()],
  spdx_id: String.t() | nil,
  url: String.t() | nil
}