# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.SetEventStreamBody do @moduledoc """ Update Event Stream Body """ @derive Jason.Encoder defstruct [ :https_endpoint, :role_arn, :topic_arn, :type ] @type t :: %__MODULE__{ :https_endpoint => String.t | nil, :role_arn => String.t | nil, :topic_arn => String.t | nil, :type => String.t } def decode(value) do value end end