lib/nuon_api/model/app_vcs_connection_commit.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.AppVcsConnectionCommit do
  @moduledoc """
  
  """

  @derive Jason.Encoder
  defstruct [
    :author_email,
    :author_name,
    :component_config_connection_id,
    :created_at,
    :created_by_id,
    :id,
    :message,
    :sha,
    :updated_at
  ]

  @type t :: %__MODULE__{
    :author_email => String.t | nil,
    :author_name => String.t | nil,
    :component_config_connection_id => String.t | nil,
    :created_at => String.t | nil,
    :created_by_id => String.t | nil,
    :id => String.t | nil,
    :message => String.t | nil,
    :sha => String.t | nil,
    :updated_at => String.t | nil
  }

  def decode(value) do
    value
  end
end