Class: StytchB2B::SCIM::Connection::UpdateRequestOptions
- Inherits:
-
Object
- Object
- StytchB2B::SCIM::Connection::UpdateRequestOptions
- Defined in:
- lib/stytch/b2b_scim.rb
Instance Attribute Summary collapse
-
#authorization ⇒ Object
Optional authorization object.
Instance Method Summary collapse
-
#initialize(authorization: nil) ⇒ UpdateRequestOptions
constructor
A new instance of UpdateRequestOptions.
- #to_headers ⇒ Object
Constructor Details
#initialize(authorization: nil) ⇒ UpdateRequestOptions
Returns a new instance of UpdateRequestOptions.
29 30 31 32 33 |
# File 'lib/stytch/b2b_scim.rb', line 29 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.
27 28 29 |
# File 'lib/stytch/b2b_scim.rb', line 27 def @authorization end |
Instance Method Details
#to_headers ⇒ Object
35 36 37 38 39 |
# File 'lib/stytch/b2b_scim.rb', line 35 def to_headers headers = {} headers.merge!(@authorization.to_headers) if headers end |