Parse and validate AT Protocol Lexicons with DTO generation for Laravel
1<?php
2
3namespace SocialDept\AtpSchema\Generated\Com\Atproto\Label;
4
5/**
6 * GENERATED CODE - DO NOT EDIT
7 */
8enum LabelValue: string
9{
10 case Hide = '!hide';
11 case NoPromote = '!no-promote';
12 case Warn = '!warn';
13 case NoUnauthenticated = '!no-unauthenticated';
14 case DmcaViolation = 'dmca-violation';
15 case Doxxing = 'doxxing';
16 case Porn = 'porn';
17 case Sexual = 'sexual';
18 case Nudity = 'nudity';
19 case Nsfl = 'nsfl';
20 case Gore = 'gore';
21}