/AWS1/CL_CHE=>GETRETENTIONSETTINGS()
¶
About GetRetentionSettings¶
Gets the retention settings for the specified Amazon Chime Enterprise account. For more information about retention settings, see Managing Chat Retention Policies in the Amazon Chime Administration Guide.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_accountid
TYPE /AWS1/CHENONEMPTYSTRING
/AWS1/CHENONEMPTYSTRING
¶
The Amazon Chime account ID.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_chegetretstgsresponse
/AWS1/CL_CHEGETRETSTGSRESPONSE
¶
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_che~getretentionsettings( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_retentionsettings = lo_result->get_retentionsettings( ).
IF lo_retentionsettings IS NOT INITIAL.
lo_roomretentionsettings = lo_retentionsettings->get_roomretentionsettings( ).
IF lo_roomretentionsettings IS NOT INITIAL.
lv_retentiondays = lo_roomretentionsettings->get_retentiondays( ).
ENDIF.
lo_conversationretentionse = lo_retentionsettings->get_conversationretsettings( ).
IF lo_conversationretentionse IS NOT INITIAL.
lv_retentiondays = lo_conversationretentionse->get_retentiondays( ).
ENDIF.
ENDIF.
lv_iso8601timestamp = lo_result->get_initiatedeletiontsmp( ).
ENDIF.