Class: StytchB2B::SSO::SAML::UpdateConnectionRequestOptions
- Inherits:
-
Object
- Object
- StytchB2B::SSO::SAML::UpdateConnectionRequestOptions
- Defined in:
- lib/stytch/b2b_sso.rb
Instance Attribute Summary collapse
-
#authorization ⇒ Object
Optional authorization object.
Instance Method Summary collapse
-
#initialize(authorization: nil) ⇒ UpdateConnectionRequestOptions
constructor
A new instance of UpdateConnectionRequestOptions.
- #to_headers ⇒ Object
Constructor Details
#initialize(authorization: nil) ⇒ UpdateConnectionRequestOptions
Returns a new instance of UpdateConnectionRequestOptions.
484 485 486 487 488 |
# File 'lib/stytch/b2b_sso.rb', line 484 def initialize( authorization: nil ) @authorization = end |
Instance Attribute Details
#authorization ⇒ Object
Optional authorization object. Pass in an active Stytch Member session token or session JWT and the request will be run using that member’s permissions.
482 483 484 |
# File 'lib/stytch/b2b_sso.rb', line 482 def @authorization end |
Instance Method Details
#to_headers ⇒ Object
490 491 492 493 494 |
# File 'lib/stytch/b2b_sso.rb', line 490 def to_headers headers = {} headers.merge!(@authorization.to_headers) if headers end |