Current section

Files

Jump to
lti lib lti oauth_data.ex
Raw

lib/lti/oauth_data.ex

defmodule LTI.OAuthData do
@moduledoc """
A struct to define the OAuth credentials to be passed around
"""
@enforce_keys [
:oauth_callback,
:oauth_consumer_key,
:oauth_version,
:oauth_nonce,
:oauth_timestamp,
:oauth_signature_method
]
defstruct [
:oauth_callback,
:oauth_consumer_key,
:oauth_version,
:oauth_nonce,
:oauth_timestamp,
:oauth_signature_method
]
end