1<?php 2 3namespace SocialDept\AtpClient\Contracts; 4 5interface HasAtpSession 6{ 7 /** 8 * Get the ATP DID associated with this model. 9 */ 10 public function getAtpDid(): ?string; 11}