GALANTHUS / ABI FUNCTION REFERENCE
gln_get_transfer_submission_vop_alternate_name
Declared in <galanthus/c_api/gln_capi.h>.
GLN_API const char* GLN_CALL gln_get_transfer_submission_vop_alternate_name(
const gln_transfer_submission_t* in_submission);
Purpose
Reads the VoP alternate name field from a typed transfer submission without taking ownership of the handle.
The return is nullable; callers must handle NULL when the backend did not provide this optional field.
For FinTS success submissions, NULL means the whole VoP block is absent. If the VoP block is present and this field is empty, the accessor returns a non-null pointer to an empty string. EBICS transfer submissions return NULL for VoP fields.
Return
Returns the alternate beneficiary name from a FinTS transfer submission VoP block when one is present. Returns NULL when the optional field is not materialized or when the input handle is NULL.
| Type | Nullability | Ownership |
|---|---|---|
const char* | nullable | borrowed |
Parameters
| Name | Direction | Type | Nullability | Ownership |
|---|---|---|---|---|
in_submission | input | const gln_transfer_submission_t* | nullable | borrowed |
Submission VoP
Returns the alternate beneficiary name from a FinTS transfer submission VoP block when one is present.
NULL means the whole VoP block is absent; a non-null empty string means the block is present but this field is empty. EBICS transfer submissions return NULL for VoP fields.
Notes
Passing NULL for in_submission is allowed and returns NULL.
The returned pointer is borrowed from the owning backend result envelope and becomes invalid when that envelope is destroyed.
See Also
gln_get_backend_result_transfer_submissiongln_get_transfer_submission_statusgln_get_transfer_submission_idgln_get_transfer_submission_vop_idgln_get_transfer_submission_vop_result_codegln_get_transfer_submission_vop_explanatory_textgln_get_transfer_submission_provider_status_count- ABI function index