Class: KintsugiSDK::SDKHooks::AfterSuccessHookContext
- Inherits:
-
HookContext
- Object
- HookContext
- KintsugiSDK::SDKHooks::AfterSuccessHookContext
- Extended by:
- T::Sig
- Defined in:
- lib/kintsugi_sdk/sdk_hooks/types.rb
Instance Attribute Summary
Attributes inherited from HookContext
#base_url, #config, #oauth2_scopes, #operation_id, #security_source
Instance Method Summary collapse
-
#initialize(hook_ctx:) ⇒ AfterSuccessHookContext
constructor
A new instance of AfterSuccessHookContext.
Constructor Details
#initialize(hook_ctx:) ⇒ AfterSuccessHookContext
Returns a new instance of AfterSuccessHookContext.
73 74 75 76 77 78 79 80 81 |
# File 'lib/kintsugi_sdk/sdk_hooks/types.rb', line 73 def initialize(hook_ctx:) super( config: hook_ctx.config, base_url: hook_ctx.base_url, operation_id: hook_ctx.operation_id, oauth2_scopes: hook_ctx.oauth2_scopes, security_source: hook_ctx.security_source ) end |