Skip to content

Declared in <galanthus/c_api/gln_capi.h>.

GLN_API const char* GLN_CALL gln_get_tan_mode_selection_name(const gln_tan_mode_selection_t* in_selection);
  • Family: Row field accessors
  • Return type: const char*

Purpose

Returns the bank-advertised display name for a selected TAN mode.

Return

Returns the bank-supplied display name materialized with the selected TAN mode.

TypeNullabilityOwnership
const char*nullableborrowed

Parameters

NameDirectionTypeNullabilityOwnership
in_selectioninputconst gln_tan_mode_selection_t*nullableborrowed

Selection Fields

Returns the bank-supplied display name materialized with the selected TAN mode.

Use gln_get_tan_mode_selection_security_function as the selection value. For a valid selection view the pointer is expected to be non-null; an empty string means no display name was materialized.

Notes

Passing NULL for in_selection is allowed and returns NULL.

The name is returned for presentation. The stable selection value is gln_get_tan_mode_selection_security_function.

The returned string is borrowed from the owning backend result envelope and becomes invalid when that envelope is destroyed.

See Also