. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * AUTOMATED_RECORD_ID := {Size=1:12} * A unique record identification number assigned to the record by the source * system. This number is intended to serve as a more sure means of * identification of a record for reconciling differences in data between two * interfacing systems. */ class AutomatedRecordId extends AbstractElement { protected const MAX_LENGTH = 12; }