lib/nuon_api/model/service_public_git_vcs_config_request.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.3.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule NuonAPI.Model.ServicePublicGitVcsConfigRequest do
  @moduledoc """
  
  """

  @derive Jason.Encoder
  defstruct [
    :branch,
    :directory,
    :repo
  ]

  @type t :: %__MODULE__{
    :branch => String.t,
    :directory => String.t,
    :repo => String.t
  }

  def decode(value) do
    value
  end
end