Packages

OpenAPI API client for Ory Oathkeeper, a cloud native Identity & Access Proxy and Access Control Decision API that authenticates, authorizes, and mutates incoming HTTP(s) requests.

Current section

Files

Jump to
ory_oathkeeper lib ory model rule_match.ex
Raw

lib/ory/model/rule_match.ex

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