lib/schemas/secret_scanning/location_pull_request_title.ex

defmodule GitHub.SecretScanning.LocationPullRequestTitle do
  @moduledoc """
  Provides struct and type for a SecretScanning.LocationPullRequestTitle
  """
  use GitHub.Encoder

  @type t :: %__MODULE__{__info__: map, pull_request_title_url: String.t()}

  defstruct [:__info__, :pull_request_title_url]

  @doc false
  @spec __fields__(atom) :: keyword
  def __fields__(type \\ :t)

  def __fields__(:t) do
    [pull_request_title_url: {:string, :uri}]
  end
end