View Source ExOAPI.Parser.V3.Context.Parameters (ex_oapi v0.1.5)

Link to this section Summary

Link to this section Types

@type t() :: %ExOAPI.Parser.V3.Context.Parameters{
  allow_empty_value: boolean() | nil,
  allow_reserved: boolean() | nil,
  content: ExOAPI.Parser.V3.Context.Content.Map.t() | nil,
  deprecated: boolean() | nil,
  description: String.t() | nil,
  example: String.t() | nil,
  examples: map() | nil,
  explode: boolean() | nil,
  in: ExOAPI.EctoTypes.ParameterIn.t() | nil,
  name: String.t() | nil,
  required: boolean() | nil,
  schema: ExOAPI.Parser.V3.Context.Schema.t() | nil,
  style: ExOAPI.EctoTypes.Style.t() | nil
}

Link to this section Functions

Link to this function

map_cast(struct \\ %__MODULE__{}, params)

View Source