# 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.AppInstallSandboxRun do @moduledoc """ """ @derive Jason.Encoder defstruct [ :app_sandbox_config, :created_at, :created_by_id, :id, :install_id, :run_type, :status, :status_description, :updated_at ] @type t :: %__MODULE__{ :app_sandbox_config => NuonAPI.Model.AppAppSandboxConfig.t | nil, :created_at => String.t | nil, :created_by_id => String.t | nil, :id => String.t | nil, :install_id => String.t | nil, :run_type => NuonAPI.Model.AppSandboxRunType.t | nil, :status => String.t | nil, :status_description => String.t | nil, :updated_at => String.t | nil } alias NuonAPI.Deserializer def decode(value) do value |> Deserializer.deserialize(:app_sandbox_config, :struct, NuonAPI.Model.AppAppSandboxConfig) |> Deserializer.deserialize(:run_type, :struct, NuonAPI.Model.AppSandboxRunType) end end