TIM SDK
TIM API C
|
|
Client identification response.
Object type client_identification_response.
Functions | |
ta_e_result_code_t | ta_client_identification_response_get_amount_saldo (ta_object_t response, ta_object_t *amount_saldo) |
Saldo amount if present. More... | |
ta_e_result_code_t | ta_client_identification_response_get_transaction_information (ta_object_t response, ta_object_t *transaction_information) |
Information about completed transaction. More... | |
ta_e_result_code_t | ta_client_identification_response_get_card_data (ta_object_t response, ta_object_t *card_data) |
Information about payment card used by the cardholder if present. More... | |
ta_e_result_code_t ta_client_identification_response_get_amount_saldo | ( | ta_object_t | response, |
ta_object_t * | amount_saldo | ||
) |
Saldo amount if present.
[in] | response | Object instance of type client_identification_response. |
[out] | amount_saldo | Pointer to variable to write object instance to. Object instance is of type amount and is not retained. Object instance is ta_object_invalid if value is not set in response. |
ta_c_rc_ok | Object instance written to amount_saldo. |
ta_c_rc_invalid_argument | response is ta_object_invalid. |
ta_c_rc_invalid_argument | response is not of type client_identification_response. |
ta_c_rc_invalid_argument | amount_saldo is null-pointer. |
ta_e_result_code_t ta_client_identification_response_get_card_data | ( | ta_object_t | response, |
ta_object_t * | card_data | ||
) |
Information about payment card used by the cardholder if present.
[in] | response | Object instance of type client_identification_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_object_invalid 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_object_invalid. |
ta_c_rc_invalid_argument | response is not of type client_identification_response. |
ta_c_rc_invalid_argument | card_data is null-pointer. |
ta_e_result_code_t ta_client_identification_response_get_transaction_information | ( | ta_object_t | response, |
ta_object_t * | transaction_information | ||
) |
Information about completed transaction.
[in] | response | Object instance of type client_identification_response. |
[out] | transaction_information | Pointer to variable to write object instance to. Object instance is of type transaction_information and is not retained. Object instance is ta_object_invalid if value is not set in response. |
ta_c_rc_ok | Object instance written to transaction_information. |
ta_c_rc_invalid_argument | response is ta_object_invalid. |
ta_c_rc_invalid_argument | response is not of type client_identification_response. |
ta_c_rc_invalid_argument | transaction_information is null-pointer. |