Class: StytchB2B::SCIM::Connection::CreateRequestOptions

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) ⇒ CreateRequestOptions

Returns a new instance of CreateRequestOptions.



143
144
145
146
147
# File 'lib/stytch/b2b_scim.rb', line 143

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.



141
142
143
# File 'lib/stytch/b2b_scim.rb', line 141

def authorization
  @authorization
end

Instance Method Details

#to_headersObject



149
150
151
152
153
# File 'lib/stytch/b2b_scim.rb', line 149

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