class Wire4Auth::EnvironmentEnum

Constants

DEVELOPMENT
PRODUCTION
SANDBOX

Attributes

base_path[R]
service_url[R]
token_url[R]

Private Class Methods

new(token_url, service_url, base_path) click to toggle source
# File lib/wire4_auth/core/environment_enum.rb, line 27
def initialize(token_url, service_url, base_path)
  @token_url = token_url
  @service_url = service_url
  @base_path = base_path
end