Current section

Files

Jump to
opencode_sdk lib opencode generated event_question_v2_replied_properties.ex
Raw

lib/opencode/generated/event_question_v2_replied_properties.ex

defmodule OpenCode.Generated.EventQuestionV2RepliedProperties do
@moduledoc """
Provides struct and type for a EventQuestionV2RepliedProperties
"""
@type t :: %__MODULE__{answers: [[String.t()]], request_id: String.t(), session_id: String.t()}
defstruct [:answers, :request_id, :session_id]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[answers: [[:string]], request_id: :string, session_id: :string]
end
end