# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule Ory.Model.OAuth2AccessRequest do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :client_id, :grant_types, :granted_audience, :granted_scopes ] @type t :: %__MODULE__{ :client_id => String.t | nil, :grant_types => [String.t] | nil, :granted_audience => [String.t] | nil, :granted_scopes => [String.t] | nil } end defimpl Poison.Decoder, for: Ory.Model.OAuth2AccessRequest do def decode(value, _options) do value end end