Current section
Files
Jump to
Current section
Files
lib/response.ex
defmodule ExMicrolink.Response do
use TypedStruct
typedstruct do
field :author, String.t()
field :content_length, String.t()
field :content_type, String.t()
field :date, String.t()
field :description, String.t()
field :error, String.t()
field :image, map()
field :iframe, map()
field :lang, String.t()
field :logo, map()
field :publisher, String.t()
field :screenshot, map()
field :title, String.t()
field :url, String.t()
field :status, integer(), default: 200
end
end