1<?php 2 3namespace SocialDept\AtpClient\Contracts; 4 5interface Recordable 6{ 7 /** 8 * Convert record to array for XRPC 9 */ 10 public function toArray(): array; 11 12 /** 13 * Get the record type (lexicon NSID) 14 */ 15 public function getType(): string; 16}