TIM SDK
TIM API C
loyalty_information.h File Reference

Description

Loyalty information. Value depending on LoyaltyInfoType.

Object type loyalty_information.

Functions

ta_e_result_code_t ta_loyalty_information_create (ta_object_t *loyalty_information, ta_object_t value, ta_object_t loyalty_info_type)
 Create object of type loyalty_information. More...
 
ta_e_result_code_t ta_loyalty_information_get_value (ta_object_t loyalty_information, ta_object_t *value)
 Information value. More...
 
ta_e_result_code_t ta_loyalty_information_get_loyalty_info_type (ta_object_t loyalty_information, ta_object_t *loyalty_info_type)
 Specifies type of loyalty information. More...
 
ta_e_result_code_t ta_loyalty_information_get_loyalty_function_type (ta_object_t loyalty_information, ta_e_loyalty_function_type_t *loyalty_function_type)
 Defines what kind of loyalty mode will be used. More...
 
ta_e_result_code_t ta_loyalty_information_get_loyalty_number (ta_object_t loyalty_information, ta_object_t *loyalty_number)
 Coupon ID. More...
 

Function Documentation

◆ ta_loyalty_information_create()

ta_e_result_code_t ta_loyalty_information_create ( ta_object_t loyalty_information,
ta_object_t  value,
ta_object_t  loyalty_info_type 
)

Create object of type loyalty_information.

Parameters
[out]loyalty_informationPointer to variable to write created object instance to. Created object instance is retained.
[in]valueValue of information. Object instance has to be of type string and is retained.
[in]loyalty_info_typeInformation type. Object instance has to be of type string and is retained.
Return values
ta_c_rc_okObject instance has been created and written to loyalty_information.
ta_c_rc_invalid_argumentloyalty_information is null-pointer.
ta_c_rc_invalid_argumentvalue is ta_object_invalid.
ta_c_rc_invalid_argumentvalue is not of type string.
ta_c_rc_invalid_argumentloyalty_info_type is ta_object_invalid.
ta_c_rc_invalid_argumentloyalty_info_type is not of type string.
ta_c_rc_out_of_memoryFailed allocating memory.

◆ ta_loyalty_information_get_loyalty_function_type()

ta_e_result_code_t ta_loyalty_information_get_loyalty_function_type ( ta_object_t  loyalty_information,
ta_e_loyalty_function_type_t loyalty_function_type 
)

Defines what kind of loyalty mode will be used.

Parameters
[in]loyalty_informationObject instance of type loyalty_information.
[out]loyalty_function_typePointer to variable to write value to.
Return values
ta_c_rc_okObject instance written to value.
ta_c_rc_invalid_argumentloyalty_information is ta_object_invalid.
ta_c_rc_invalid_argumentloyalty_information is not of type loyalty_information.
ta_c_rc_invalid_argumentloyalty_function_type is null-pointer.

◆ ta_loyalty_information_get_loyalty_info_type()

ta_e_result_code_t ta_loyalty_information_get_loyalty_info_type ( ta_object_t  loyalty_information,
ta_object_t loyalty_info_type 
)

Specifies type of loyalty information.

Parameters
[in]loyalty_informationObject instance of type loyalty_information.
[out]loyalty_info_typePointer to variable to write object instance to. Object instance is of type string and is not retained.
Return values
ta_c_rc_okObject instance written to value.
ta_c_rc_invalid_argumentloyalty_information is ta_object_invalid.
ta_c_rc_invalid_argumentloyalty_information is not of type loyalty_information.
ta_c_rc_invalid_argumentloyalty_info_type is null-pointer.

◆ ta_loyalty_information_get_loyalty_number()

ta_e_result_code_t ta_loyalty_information_get_loyalty_number ( ta_object_t  loyalty_information,
ta_object_t loyalty_number 
)

Coupon ID.

Parameters
[in]loyalty_informationObject instance of type loyalty_information.
[out]loyalty_numberPointer to variable to write object instance to. Object instance is of type string and is not retained.
Return values
ta_c_rc_okObject instance written to id.
ta_c_rc_invalid_argumentloyalty_information is ta_object_invalid.
ta_c_rc_invalid_argumentloyalty_information is not of type loyalty_information.
ta_c_rc_invalid_argumentloyalty_number is null-pointer.

◆ ta_loyalty_information_get_value()

ta_e_result_code_t ta_loyalty_information_get_value ( ta_object_t  loyalty_information,
ta_object_t value 
)

Information value.

Parameters
[in]loyalty_informationObject instance of type loyalty_information.
[out]valuePointer to variable to write object instance to. Object instance is of type string and is not retained.
Return values
ta_c_rc_okObject instance written to value.
ta_c_rc_invalid_argumentloyalty_information is ta_object_invalid.
ta_c_rc_invalid_argumentloyalty_information is not of type loyalty_information.
ta_c_rc_invalid_argumentvalue is null-pointer.