Class: CheckoutSdk::Workflows::WebhookWorkflowAction
- Inherits:
-
WorkflowAction
- Object
- WorkflowAction
- CheckoutSdk::Workflows::WebhookWorkflowAction
- Defined in:
- lib/checkout_sdk/workflows/webhook_workflow_action.rb
Instance Attribute Summary collapse
Attributes inherited from WorkflowAction
Instance Method Summary collapse
-
#initialize ⇒ WebhookWorkflowAction
constructor
A new instance of WebhookWorkflowAction.
Constructor Details
#initialize ⇒ WebhookWorkflowAction
Returns a new instance of WebhookWorkflowAction.
16 17 18 |
# File 'lib/checkout_sdk/workflows/webhook_workflow_action.rb', line 16 def initialize super CheckoutSdk::Workflows::WorkflowActionType::WEBHOOK end |
Instance Attribute Details
#headers ⇒ Hash{String => String}
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/workflows/webhook_workflow_action.rb', line 11 class WebhookWorkflowAction < WorkflowAction attr_accessor :url, :headers, :signature def initialize super CheckoutSdk::Workflows::WorkflowActionType::WEBHOOK end end |
#signature ⇒ WebhookSignature
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/workflows/webhook_workflow_action.rb', line 11 class WebhookWorkflowAction < WorkflowAction attr_accessor :url, :headers, :signature def initialize super CheckoutSdk::Workflows::WorkflowActionType::WEBHOOK end end |
#url ⇒ String
11 12 13 14 15 16 17 18 19 |
# File 'lib/checkout_sdk/workflows/webhook_workflow_action.rb', line 11 class WebhookWorkflowAction < WorkflowAction attr_accessor :url, :headers, :signature def initialize super CheckoutSdk::Workflows::WorkflowActionType::WEBHOOK end end |