Add "class" and "press" to method "feed_content" (#1346)
Some checks are pending
build_downport / build_downport (push) Waiting to run

This commit is contained in:
Francisco Milán 2024-08-28 15:29:06 -06:00 committed by GitHub
parent 77de686bbc
commit 2f82cf972c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2611,6 +2611,8 @@ CLASS z2ui5_cl_xml_view DEFINITION
IMPORTING contenttext TYPE clike OPTIONAL IMPORTING contenttext TYPE clike OPTIONAL
subheader TYPE clike OPTIONAL subheader TYPE clike OPTIONAL
value TYPE clike OPTIONAL value TYPE clike OPTIONAL
class TYPE clike OPTIONAL
press TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS news_content METHODS news_content
@ -9883,7 +9885,9 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
name = `FeedContent` name = `FeedContent`
t_prop = VALUE #( ( n = `contentText` v = contenttext ) t_prop = VALUE #( ( n = `contentText` v = contenttext )
( n = `subheader` v = subheader ) ( n = `subheader` v = subheader )
( n = `value` v = value ) ) ). ( n = `value` v = value )
( n = `class` v = class )
( n = `press` v = press ) ) ).
ENDMETHOD. ENDMETHOD.