Class: StytchB2B::SCIM::Connection::GetRequestOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/stytch/b2b_scim.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(authorization: nil) ⇒ GetRequestOptions

Returns a new instance of GetRequestOptions.



162
163
164
165
166
# File 'lib/stytch/b2b_scim.rb', line 162

def initialize(
  authorization: nil
)
  @authorization = authorization
end

Instance Attribute Details

#authorizationObject

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.



160
161
162
# File 'lib/stytch/b2b_scim.rb', line 160

def authorization
  @authorization
end

Instance Method Details

#to_headersObject



168
169
170
171
172
# File 'lib/stytch/b2b_scim.rb', line 168

def to_headers
  headers = {}
  headers.merge!(@authorization.to_headers) if authorization
  headers
end