/AWS1/CL_LM2=>DESCRIBESLOT()
¶
About DescribeSlot¶
Gets metadata information about a slot.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_slotid
TYPE /AWS1/LM2ID
/AWS1/LM2ID
¶
The unique identifier for the slot.
iv_botid
TYPE /AWS1/LM2ID
/AWS1/LM2ID
¶
The identifier of the bot associated with the slot.
iv_botversion
TYPE /AWS1/LM2BOTVERSION
/AWS1/LM2BOTVERSION
¶
The version of the bot associated with the slot.
iv_localeid
TYPE /AWS1/LM2LOCALEID
/AWS1/LM2LOCALEID
¶
The identifier of the language and locale of the slot to describe. The string must match one of the supported locales. For more information, see Supported languages.
iv_intentid
TYPE /AWS1/LM2ID
/AWS1/LM2ID
¶
The identifier of the intent that contains the slot.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_lm2descrslotresponse
/AWS1/CL_LM2DESCRSLOTRESPONSE
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_lm2~describeslot(
iv_botid = |string|
iv_botversion = |string|
iv_intentid = |string|
iv_localeid = |string|
iv_slotid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_id = lo_result->get_slotid( ).
lv_name = lo_result->get_slotname( ).
lv_description = lo_result->get_description( ).
lv_builtinorcustomslottype = lo_result->get_slottypeid( ).
lo_slotvalueelicitationset = lo_result->get_valueelicitationsetting( ).
IF lo_slotvalueelicitationset IS NOT INITIAL.
lo_slotdefaultvaluespecifi = lo_slotvalueelicitationset->get_defaultvaluespec( ).
IF lo_slotdefaultvaluespecifi IS NOT INITIAL.
LOOP AT lo_slotdefaultvaluespecifi->get_defaultvaluelist( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_slotdefaultvaluestring = lo_row_1->get_defaultvalue( ).
ENDIF.
ENDLOOP.
ENDIF.
lv_slotconstraint = lo_slotvalueelicitationset->get_slotconstraint( ).
lo_promptspecification = lo_slotvalueelicitationset->get_promptspecification( ).
IF lo_promptspecification IS NOT INITIAL.
LOOP AT lo_promptspecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_promptmaxretries = lo_promptspecification->get_maxretries( ).
lv_boxedboolean = lo_promptspecification->get_allowinterrupt( ).
lv_messageselectionstrateg = lo_promptspecification->get_messageselectionstrategy( ).
LOOP AT lo_promptspecification->get_promptattemptsspec( ) into ls_row_8.
lv_key = ls_row_8-key.
lo_value = ls_row_8-value.
IF lo_value IS NOT INITIAL.
lv_boxedboolean = lo_value->get_allowinterrupt( ).
lo_allowedinputtypes = lo_value->get_allowedinputtypes( ).
IF lo_allowedinputtypes IS NOT INITIAL.
lv_boxedboolean = lo_allowedinputtypes->get_allowaudioinput( ).
lv_boxedboolean = lo_allowedinputtypes->get_allowdtmfinput( ).
ENDIF.
lo_audioanddtmfinputspecif = lo_value->get_audioanddtmfinputspec( ).
IF lo_audioanddtmfinputspecif IS NOT INITIAL.
lv_timeinmilliseconds = lo_audioanddtmfinputspecif->get_starttimeoutms( ).
lo_audiospecification = lo_audioanddtmfinputspecif->get_audiospecification( ).
IF lo_audiospecification IS NOT INITIAL.
lv_timeinmilliseconds = lo_audiospecification->get_maxlengthms( ).
lv_timeinmilliseconds = lo_audiospecification->get_endtimeoutms( ).
ENDIF.
lo_dtmfspecification = lo_audioanddtmfinputspecif->get_dtmfspecification( ).
IF lo_dtmfspecification IS NOT INITIAL.
lv_maxutterancedigits = lo_dtmfspecification->get_maxlength( ).
lv_timeinmilliseconds = lo_dtmfspecification->get_endtimeoutms( ).
lv_dtmfcharacter = lo_dtmfspecification->get_deletioncharacter( ).
lv_dtmfcharacter = lo_dtmfspecification->get_endcharacter( ).
ENDIF.
ENDIF.
lo_textinputspecification = lo_value->get_textinputspecification( ).
IF lo_textinputspecification IS NOT INITIAL.
lv_timeinmilliseconds = lo_textinputspecification->get_starttimeoutms( ).
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_slotvalueelicitationset->get_sampleutterances( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_utterance = lo_row_10->get_utterance( ).
ENDIF.
ENDLOOP.
lo_waitandcontinuespecific = lo_slotvalueelicitationset->get_waitandcontinuespec( ).
IF lo_waitandcontinuespecific IS NOT INITIAL.
lo_responsespecification = lo_waitandcontinuespecific->get_waitingresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_responsespecification = lo_waitandcontinuespecific->get_continueresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_stillwaitingresponsespe = lo_waitandcontinuespecific->get_stillwaitingresponse( ).
IF lo_stillwaitingresponsespe IS NOT INITIAL.
LOOP AT lo_stillwaitingresponsespe->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_stillwaitingresponsefre = lo_stillwaitingresponsespe->get_frequencyinseconds( ).
lv_stillwaitingresponsetim = lo_stillwaitingresponsespe->get_timeoutinseconds( ).
lv_boxedboolean = lo_stillwaitingresponsespe->get_allowinterrupt( ).
ENDIF.
lv_boxedboolean = lo_waitandcontinuespecific->get_active( ).
ENDIF.
lo_slotcapturesetting = lo_slotvalueelicitationset->get_slotcapturesetting( ).
IF lo_slotcapturesetting IS NOT INITIAL.
lo_responsespecification = lo_slotcapturesetting->get_captureresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_dialogstate = lo_slotcapturesetting->get_capturenextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_conditionalspecificatio = lo_slotcapturesetting->get_captureconditional( ).
IF lo_conditionalspecificatio IS NOT INITIAL.
lv_boxedboolean = lo_conditionalspecificatio->get_active( ).
LOOP AT lo_conditionalspecificatio->get_conditionalbranches( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_name = lo_row_16->get_name( ).
lo_condition = lo_row_16->get_condition( ).
IF lo_condition IS NOT INITIAL.
lv_conditionexpression = lo_condition->get_expressionstring( ).
ENDIF.
lo_dialogstate = lo_row_16->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_row_16->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_defaultconditionalbranc = lo_conditionalspecificatio->get_defaultbranch( ).
IF lo_defaultconditionalbranc IS NOT INITIAL.
lo_dialogstate = lo_defaultconditionalbranc->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_defaultconditionalbranc->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDIF.
lo_responsespecification = lo_slotcapturesetting->get_failureresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_dialogstate = lo_slotcapturesetting->get_failurenextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_conditionalspecificatio = lo_slotcapturesetting->get_failureconditional( ).
IF lo_conditionalspecificatio IS NOT INITIAL.
lv_boxedboolean = lo_conditionalspecificatio->get_active( ).
LOOP AT lo_conditionalspecificatio->get_conditionalbranches( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_name = lo_row_16->get_name( ).
lo_condition = lo_row_16->get_condition( ).
IF lo_condition IS NOT INITIAL.
lv_conditionexpression = lo_condition->get_expressionstring( ).
ENDIF.
lo_dialogstate = lo_row_16->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_row_16->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_defaultconditionalbranc = lo_conditionalspecificatio->get_defaultbranch( ).
IF lo_defaultconditionalbranc IS NOT INITIAL.
lo_dialogstate = lo_defaultconditionalbranc->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_defaultconditionalbranc->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDIF.
lo_dialogcodehookinvocatio = lo_slotcapturesetting->get_codehook( ).
IF lo_dialogcodehookinvocatio IS NOT INITIAL.
lv_boxedboolean = lo_dialogcodehookinvocatio->get_enablecodehookinvocation( ).
lv_boxedboolean = lo_dialogcodehookinvocatio->get_active( ).
lv_name = lo_dialogcodehookinvocatio->get_invocationlabel( ).
lo_postdialogcodehookinvoc = lo_dialogcodehookinvocatio->get_postcodehookspec( ).
IF lo_postdialogcodehookinvoc IS NOT INITIAL.
lo_responsespecification = lo_postdialogcodehookinvoc->get_successresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_dialogstate = lo_postdialogcodehookinvoc->get_successnextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_conditionalspecificatio = lo_postdialogcodehookinvoc->get_successconditional( ).
IF lo_conditionalspecificatio IS NOT INITIAL.
lv_boxedboolean = lo_conditionalspecificatio->get_active( ).
LOOP AT lo_conditionalspecificatio->get_conditionalbranches( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_name = lo_row_16->get_name( ).
lo_condition = lo_row_16->get_condition( ).
IF lo_condition IS NOT INITIAL.
lv_conditionexpression = lo_condition->get_expressionstring( ).
ENDIF.
lo_dialogstate = lo_row_16->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_row_16->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_defaultconditionalbranc = lo_conditionalspecificatio->get_defaultbranch( ).
IF lo_defaultconditionalbranc IS NOT INITIAL.
lo_dialogstate = lo_defaultconditionalbranc->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_defaultconditionalbranc->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDIF.
lo_responsespecification = lo_postdialogcodehookinvoc->get_failureresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_dialogstate = lo_postdialogcodehookinvoc->get_failurenextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_conditionalspecificatio = lo_postdialogcodehookinvoc->get_failureconditional( ).
IF lo_conditionalspecificatio IS NOT INITIAL.
lv_boxedboolean = lo_conditionalspecificatio->get_active( ).
LOOP AT lo_conditionalspecificatio->get_conditionalbranches( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_name = lo_row_16->get_name( ).
lo_condition = lo_row_16->get_condition( ).
IF lo_condition IS NOT INITIAL.
lv_conditionexpression = lo_condition->get_expressionstring( ).
ENDIF.
lo_dialogstate = lo_row_16->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_row_16->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_defaultconditionalbranc = lo_conditionalspecificatio->get_defaultbranch( ).
IF lo_defaultconditionalbranc IS NOT INITIAL.
lo_dialogstate = lo_defaultconditionalbranc->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_defaultconditionalbranc->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDIF.
lo_responsespecification = lo_postdialogcodehookinvoc->get_timeoutresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_dialogstate = lo_postdialogcodehookinvoc->get_timeoutnextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_conditionalspecificatio = lo_postdialogcodehookinvoc->get_timeoutconditional( ).
IF lo_conditionalspecificatio IS NOT INITIAL.
lv_boxedboolean = lo_conditionalspecificatio->get_active( ).
LOOP AT lo_conditionalspecificatio->get_conditionalbranches( ) into lo_row_15.
lo_row_16 = lo_row_15.
IF lo_row_16 IS NOT INITIAL.
lv_name = lo_row_16->get_name( ).
lo_condition = lo_row_16->get_condition( ).
IF lo_condition IS NOT INITIAL.
lv_conditionexpression = lo_condition->get_expressionstring( ).
ENDIF.
lo_dialogstate = lo_row_16->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_row_16->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_defaultconditionalbranc = lo_conditionalspecificatio->get_defaultbranch( ).
IF lo_defaultconditionalbranc IS NOT INITIAL.
lo_dialogstate = lo_defaultconditionalbranc->get_nextstep( ).
IF lo_dialogstate IS NOT INITIAL.
lo_dialogaction = lo_dialogstate->get_dialogaction( ).
IF lo_dialogaction IS NOT INITIAL.
lv_dialogactiontype = lo_dialogaction->get_type( ).
lv_name = lo_dialogaction->get_slottoelicit( ).
lv_boxedboolean = lo_dialogaction->get_suppressnextmessage( ).
ENDIF.
lo_intentoverride = lo_dialogstate->get_intent( ).
IF lo_intentoverride IS NOT INITIAL.
lv_name = lo_intentoverride->get_name( ).
LOOP AT lo_intentoverride->get_slots( ) into ls_row_11.
lv_key_1 = ls_row_11-key.
lo_value_1 = ls_row_11-value.
IF lo_value_1 IS NOT INITIAL.
lv_slotshape = lo_value_1->get_shape( ).
lo_slotvalue = lo_value_1->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
LOOP AT lo_value_1->get_values( ) into lo_row_12.
lo_row_13 = lo_row_12.
IF lo_row_13 IS NOT INITIAL.
lv_slotshape = lo_row_13->get_shape( ).
lo_slotvalue = lo_row_13->get_value( ).
IF lo_slotvalue IS NOT INITIAL.
lv_nonemptystring = lo_slotvalue->get_interpretedvalue( ).
ENDIF.
" Skipping lo_row_12 to avoid recursion
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_dialogstate->get_sessionattributes( ) into ls_row_14.
lv_key_2 = ls_row_14-key.
lo_value_2 = ls_row_14-value.
IF lo_value_2 IS NOT INITIAL.
lv_string = lo_value_2->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_responsespecification = lo_defaultconditionalbranc->get_response( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
ENDIF.
ENDIF.
ENDIF.
ENDIF.
lo_elicitationcodehookinvo = lo_slotcapturesetting->get_elicitationcodehook( ).
IF lo_elicitationcodehookinvo IS NOT INITIAL.
lv_boxedboolean = lo_elicitationcodehookinvo->get_enablecodehookinvocation( ).
lv_name = lo_elicitationcodehookinvo->get_invocationlabel( ).
ENDIF.
ENDIF.
lo_slotresolutionsetting = lo_slotvalueelicitationset->get_slotresolutionsetting( ).
IF lo_slotresolutionsetting IS NOT INITIAL.
lv_slotresolutionstrategy = lo_slotresolutionsetting->get_slotresolutionstrategy( ).
ENDIF.
ENDIF.
lo_obfuscationsetting = lo_result->get_obfuscationsetting( ).
IF lo_obfuscationsetting IS NOT INITIAL.
lv_obfuscationsettingtype = lo_obfuscationsetting->get_obfuscationsettingtype( ).
ENDIF.
lv_id = lo_result->get_botid( ).
lv_botversion = lo_result->get_botversion( ).
lv_localeid = lo_result->get_localeid( ).
lv_id = lo_result->get_intentid( ).
lv_timestamp = lo_result->get_creationdatetime( ).
lv_timestamp = lo_result->get_lastupdateddatetime( ).
lo_multiplevaluessetting = lo_result->get_multiplevaluessetting( ).
IF lo_multiplevaluessetting IS NOT INITIAL.
lv_boolean = lo_multiplevaluessetting->get_allowmultiplevalues( ).
ENDIF.
lo_subslotsetting = lo_result->get_subslotsetting( ).
IF lo_subslotsetting IS NOT INITIAL.
lv_subslotexpression = lo_subslotsetting->get_expression( ).
LOOP AT lo_subslotsetting->get_slotspecifications( ) into ls_row_17.
lv_key_1 = ls_row_17-key.
lo_value_3 = ls_row_17-value.
IF lo_value_3 IS NOT INITIAL.
lv_builtinorcustomslottype = lo_value_3->get_slottypeid( ).
lo_subslotvalueelicitation = lo_value_3->get_valueelicitationsetting( ).
IF lo_subslotvalueelicitation IS NOT INITIAL.
lo_slotdefaultvaluespecifi = lo_subslotvalueelicitation->get_defaultvaluespec( ).
IF lo_slotdefaultvaluespecifi IS NOT INITIAL.
LOOP AT lo_slotdefaultvaluespecifi->get_defaultvaluelist( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_slotdefaultvaluestring = lo_row_1->get_defaultvalue( ).
ENDIF.
ENDLOOP.
ENDIF.
lo_promptspecification = lo_subslotvalueelicitation->get_promptspecification( ).
IF lo_promptspecification IS NOT INITIAL.
LOOP AT lo_promptspecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_promptmaxretries = lo_promptspecification->get_maxretries( ).
lv_boxedboolean = lo_promptspecification->get_allowinterrupt( ).
lv_messageselectionstrateg = lo_promptspecification->get_messageselectionstrategy( ).
LOOP AT lo_promptspecification->get_promptattemptsspec( ) into ls_row_8.
lv_key = ls_row_8-key.
lo_value = ls_row_8-value.
IF lo_value IS NOT INITIAL.
lv_boxedboolean = lo_value->get_allowinterrupt( ).
lo_allowedinputtypes = lo_value->get_allowedinputtypes( ).
IF lo_allowedinputtypes IS NOT INITIAL.
lv_boxedboolean = lo_allowedinputtypes->get_allowaudioinput( ).
lv_boxedboolean = lo_allowedinputtypes->get_allowdtmfinput( ).
ENDIF.
lo_audioanddtmfinputspecif = lo_value->get_audioanddtmfinputspec( ).
IF lo_audioanddtmfinputspecif IS NOT INITIAL.
lv_timeinmilliseconds = lo_audioanddtmfinputspecif->get_starttimeoutms( ).
lo_audiospecification = lo_audioanddtmfinputspecif->get_audiospecification( ).
IF lo_audiospecification IS NOT INITIAL.
lv_timeinmilliseconds = lo_audiospecification->get_maxlengthms( ).
lv_timeinmilliseconds = lo_audiospecification->get_endtimeoutms( ).
ENDIF.
lo_dtmfspecification = lo_audioanddtmfinputspecif->get_dtmfspecification( ).
IF lo_dtmfspecification IS NOT INITIAL.
lv_maxutterancedigits = lo_dtmfspecification->get_maxlength( ).
lv_timeinmilliseconds = lo_dtmfspecification->get_endtimeoutms( ).
lv_dtmfcharacter = lo_dtmfspecification->get_deletioncharacter( ).
lv_dtmfcharacter = lo_dtmfspecification->get_endcharacter( ).
ENDIF.
ENDIF.
lo_textinputspecification = lo_value->get_textinputspecification( ).
IF lo_textinputspecification IS NOT INITIAL.
lv_timeinmilliseconds = lo_textinputspecification->get_starttimeoutms( ).
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
LOOP AT lo_subslotvalueelicitation->get_sampleutterances( ) into lo_row_9.
lo_row_10 = lo_row_9.
IF lo_row_10 IS NOT INITIAL.
lv_utterance = lo_row_10->get_utterance( ).
ENDIF.
ENDLOOP.
lo_waitandcontinuespecific = lo_subslotvalueelicitation->get_waitandcontinuespec( ).
IF lo_waitandcontinuespecific IS NOT INITIAL.
lo_responsespecification = lo_waitandcontinuespecific->get_waitingresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_responsespecification = lo_waitandcontinuespecific->get_continueresponse( ).
IF lo_responsespecification IS NOT INITIAL.
LOOP AT lo_responsespecification->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_boxedboolean = lo_responsespecification->get_allowinterrupt( ).
ENDIF.
lo_stillwaitingresponsespe = lo_waitandcontinuespecific->get_stillwaitingresponse( ).
IF lo_stillwaitingresponsespe IS NOT INITIAL.
LOOP AT lo_stillwaitingresponsespe->get_messagegroups( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lo_message = lo_row_3->get_message( ).
IF lo_message IS NOT INITIAL.
lo_plaintextmessage = lo_message->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_message->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_message->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_message->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
LOOP AT lo_row_3->get_variations( ) into lo_row_6.
lo_row_7 = lo_row_6.
IF lo_row_7 IS NOT INITIAL.
lo_plaintextmessage = lo_row_7->get_plaintextmessage( ).
IF lo_plaintextmessage IS NOT INITIAL.
lv_plaintextmessagevalue = lo_plaintextmessage->get_value( ).
ENDIF.
lo_custompayload = lo_row_7->get_custompayload( ).
IF lo_custompayload IS NOT INITIAL.
lv_custompayloadvalue = lo_custompayload->get_value( ).
ENDIF.
lo_ssmlmessage = lo_row_7->get_ssmlmessage( ).
IF lo_ssmlmessage IS NOT INITIAL.
lv_ssmlmessagevalue = lo_ssmlmessage->get_value( ).
ENDIF.
lo_imageresponsecard = lo_row_7->get_imageresponsecard( ).
IF lo_imageresponsecard IS NOT INITIAL.
lv_attachmenttitle = lo_imageresponsecard->get_title( ).
lv_attachmenttitle = lo_imageresponsecard->get_subtitle( ).
lv_attachmenturl = lo_imageresponsecard->get_imageurl( ).
LOOP AT lo_imageresponsecard->get_buttons( ) into lo_row_4.
lo_row_5 = lo_row_4.
IF lo_row_5 IS NOT INITIAL.
lv_buttontext = lo_row_5->get_text( ).
lv_buttonvalue = lo_row_5->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
lv_stillwaitingresponsefre = lo_stillwaitingresponsespe->get_frequencyinseconds( ).
lv_stillwaitingresponsetim = lo_stillwaitingresponsespe->get_timeoutinseconds( ).
lv_boxedboolean = lo_stillwaitingresponsespe->get_allowinterrupt( ).
ENDIF.
lv_boxedboolean = lo_waitandcontinuespecific->get_active( ).
ENDIF.
ENDIF.
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.