Parse and validate AT Protocol Lexicons with DTO generation for Laravel
at main 15 lines 279 B view raw
1<?php 2 3namespace SocialDept\AtpSchema\Generated\Com\Atproto\Sync; 4 5/** 6 * GENERATED CODE - DO NOT EDIT 7 */ 8enum HostStatus: string 9{ 10 case Active = 'active'; 11 case Idle = 'idle'; 12 case Offline = 'offline'; 13 case Throttled = 'throttled'; 14 case Banned = 'banned'; 15}