Class: Io::Flow::V0::HttpClient::AuthScheme
- Inherits:
-
Object
- Object
- Io::Flow::V0::HttpClient::AuthScheme
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Constant Summary collapse
- BASIC =
AuthScheme.new("basic")
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ AuthScheme
constructor
A new instance of AuthScheme.
Constructor Details
#initialize(name) ⇒ AuthScheme
Returns a new instance of AuthScheme.
26527 26528 26529 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26527 def initialize(name) @name = HttpClient::Preconditions.check_not_blank('name', name) end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
26525 26526 26527 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26525 def name @name end |