TIM SDK
TIM API C
|
|
Show dialog response.
Object type show_dialog_response.
Functions | |
ta_e_result_code_t | ta_show_dialog_response_get_reason (ta_object_t response, ta_e_reason_t *reason) |
Reason for closing dialog. More... | |
ta_e_result_code_t | ta_show_dialog_response_get_user_input (ta_object_t response, ta_object_t *user_input) |
User input or ta_object_invalid if absent. More... | |
ta_e_result_code_t | ta_show_dialog_response_get_card_data (ta_object_t response, ta_object_t *card_data) |
Card data or ta_object_invalid if absent. More... | |
ta_e_result_code_t ta_show_dialog_response_get_card_data | ( | ta_object_t | response, |
ta_object_t * | card_data | ||
) |
Card data or ta_object_invalid if absent.
[in] | response | Object instance of type show_dialog_response. |
[out] | card_data | Pointer to variable to write object instance to. Object instance is of type card_data and is not retained. Object instance is ta_invalid_object if value is not set in response. |
ta_c_rc_ok | Object instance written to card_data. |
ta_c_rc_invalid_argument | response is ta_invalid_object. |
ta_c_rc_invalid_argument | response is not of type show_dialog_response. |
ta_c_rc_invalid_argument | card_data is null-pointer. |
ta_e_result_code_t ta_show_dialog_response_get_reason | ( | ta_object_t | response, |
ta_e_reason_t * | reason | ||
) |
Reason for closing dialog.
[in] | response | Object instance of type show_dialog_response. |
[out] | reason | Pointer to variable to write value to. |
ta_c_rc_ok | Object instance written to reason. |
ta_c_rc_invalid_argument | response is ta_invalid_object. |
ta_c_rc_invalid_argument | response is not of type show_dialog_response. |
ta_c_rc_invalid_argument | reason is null-pointer. |
ta_e_result_code_t ta_show_dialog_response_get_user_input | ( | ta_object_t | response, |
ta_object_t * | user_input | ||
) |
User input or ta_object_invalid if absent.
[in] | response | Object instance of type show_dialog_response. |
[out] | user_input | Pointer to variable to write object instance to. Object instance is of type string and is not retained. Object instance is ta_invalid_object if value is not set in response. |
ta_c_rc_ok | Object instance written to user_input. |
ta_c_rc_invalid_argument | response is ta_invalid_object. |
ta_c_rc_invalid_argument | response is not of type show_dialog_response. |
ta_c_rc_invalid_argument | user_input is null-pointer. |