Class: StytchB2B::MagicLinks::Email::InviteRequestOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(authorization: nil) ⇒ InviteRequestOptions

Returns a new instance of InviteRequestOptions.



160
161
162
163
164
# File 'lib/stytch/b2b_magic_links.rb', line 160

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.



158
159
160
# File 'lib/stytch/b2b_magic_links.rb', line 158

def authorization
  @authorization
end

Instance Method Details

#to_headersObject



166
167
168
169
170
# File 'lib/stytch/b2b_magic_links.rb', line 166

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