GALANTHUS / ABI FUNCTION REFERENCE
gln_get_batch_transfer_item_result_status
Declared in <galanthus/c_api/gln_capi.h>.
GLN_API const char* GLN_CALL gln_get_batch_transfer_item_result_status(
const gln_batch_transfer_item_result_t* in_item);
Purpose
Reads the status 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 item outcome derived from one FinTS batch-transfer item result row.
Return
Returns the item outcome string derived from the FinTS status row attributed to this submitted item.
| Type | Nullability | Ownership |
|---|---|---|
const char* | nullable | borrowed |
Parameters
| Name | Direction | Type | Nullability | Ownership |
|---|---|---|---|---|
in_item | input | const gln_batch_transfer_item_result_t* | nullable | borrowed |
Item Result Fields
Returns the item outcome string derived from the FinTS status row attributed to this submitted item.
The FinTS attribution path maps error status rows to rejected and non-error attributed rows to accepted. Treat the string as result data, not as a fixed C enum.
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.