Current section
Files
Jump to
Current section
Files
lib/ex_bifrost/model/get_proxy_config_200_response.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.23.0 (https://openapi-generator.tech)
# using the Elixir SDK Generator template (https://github.com/houllette/elixir-sdk-generator).
# Do not edit this file manually — edit the templates and regenerate instead.
defmodule ExBifrost.Model.GetProxyConfig200Response do
@moduledoc """
Global proxy configuration
"""
@derive JSON.Encoder
defstruct [
:enabled,
:type,
:url,
:username,
:password,
:no_proxy,
:timeout,
:skip_tls_verify,
:enable_for_scim,
:enable_for_inference,
:enable_for_api
]
@type t :: %__MODULE__{
:enabled => boolean() | nil,
:type => String.t() | nil,
:url => String.t() | nil,
:username => String.t() | nil,
:password => String.t() | nil,
:no_proxy => String.t() | nil,
:timeout => integer() | nil,
:skip_tls_verify => boolean() | nil,
:enable_for_scim => boolean() | nil,
:enable_for_inference => boolean() | nil,
:enable_for_api => boolean() | nil
}
def decode(value) do
value
end
end