Interface InvokeInvokeAdHocParams.Automation.Step.Visitor
-
- All Implemented Interfaces:
public interface InvokeInvokeAdHocParams.Automation.Step.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract TvisitAutomationDelay(InvokeInvokeAdHocParams.Automation.Step.AutomationDelayStep automationDelay)abstract TvisitAutomationSend(InvokeInvokeAdHocParams.Automation.Step.AutomationSendStep automationSend)abstract TvisitAutomationSendList(InvokeInvokeAdHocParams.Automation.Step.AutomationSendListStep automationSendList)abstract TvisitAutomationUpdateProfile(InvokeInvokeAdHocParams.Automation.Step.AutomationUpdateProfileStep automationUpdateProfile)abstract TvisitAutomationCancel(InvokeInvokeAdHocParams.Automation.Step.AutomationCancelStep automationCancel)abstract TvisitAutomationFetchData(InvokeInvokeAdHocParams.Automation.Step.AutomationFetchDataStep automationFetchData)abstract TvisitAutomationInvoke(InvokeInvokeAdHocParams.Automation.Step.AutomationInvokeStep automationInvoke)Tunknown(JsonValue json)Maps an unknown variant of Step to a value of type T. -
-
Method Detail
-
visitAutomationDelay
abstract T visitAutomationDelay(InvokeInvokeAdHocParams.Automation.Step.AutomationDelayStep automationDelay)
-
visitAutomationSend
abstract T visitAutomationSend(InvokeInvokeAdHocParams.Automation.Step.AutomationSendStep automationSend)
-
visitAutomationSendList
abstract T visitAutomationSendList(InvokeInvokeAdHocParams.Automation.Step.AutomationSendListStep automationSendList)
-
visitAutomationUpdateProfile
abstract T visitAutomationUpdateProfile(InvokeInvokeAdHocParams.Automation.Step.AutomationUpdateProfileStep automationUpdateProfile)
-
visitAutomationCancel
abstract T visitAutomationCancel(InvokeInvokeAdHocParams.Automation.Step.AutomationCancelStep automationCancel)
-
visitAutomationFetchData
abstract T visitAutomationFetchData(InvokeInvokeAdHocParams.Automation.Step.AutomationFetchDataStep automationFetchData)
-
visitAutomationInvoke
abstract T visitAutomationInvoke(InvokeInvokeAdHocParams.Automation.Step.AutomationInvokeStep automationInvoke)
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of Step to a value of type T.
An instance of Step can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-