Skip to content

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

GLN_API const char* GLN_CALL gln_get_batch_transfer_item_result_message(
    const gln_batch_transfer_item_result_t* in_item);
  • Family: Row field accessors
  • Return type: const char*

Purpose

Reads the message field from a typed batch-transfer item result row without taking ownership of the handle.

The ABI reports a nullable return, so callers should handle NULL defensively. When passed a valid non-null handle, required fields are expected to carry a value.

Returns the provider message reported for one FinTS batch-transfer item result row.

Return

Returns the provider message reported for one FinTS item-level batch-transfer result row.

TypeNullabilityOwnership
const char*nullableborrowed

Parameters

NameDirectionTypeNullabilityOwnership
in_iteminputconst gln_batch_transfer_item_result_t*nullableborrowed

Item Result Fields

Returns the provider message reported for one FinTS item-level batch-transfer result row.

The message belongs to the item row, not to the aggregate batch summary. The returned pointer is borrowed from the owning backend result envelope.

Notes

Passing NULL for in_item is allowed and returns NULL.

Rows returned by the matching _at accessor carry this field as part of the materialized typed result.

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

See Also