dolibarr.bankimport/vendor/nemiah/php-fints/lib/Fhp/Segment/SegmentInterface.php
2026-02-13 18:30:28 +01:00

20 lines
347 B
PHP

<?php
namespace Fhp\Segment;
interface SegmentInterface
{
/**
* Returns string representation of object.
*/
public function __toString(): string;
/**
* Gets the name of the segment.
*/
public function getName(): string;
public function getVersion(): int;
public function getSegmentNumber(): int;
}