Something went wrong. Try again.
Parse and validate AT Protocol Lexicons with DTO generation for Laravel
Something went wrong. Try again.
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253<?php
namespace SocialDept\AtpSchema\Generated\App\Bsky\Graph\Defs;
use SocialDept\AtpSchema\Data\Data;
/** * GENERATED CODE - DO NOT EDIT * * Lexicon: app.bsky.graph.defs.listViewerState * Type: object * * @property bool|null $muted * @property string|null $blocked * * Constraints: * - blocked: Format: at-uri */class ListViewerState extends Data{ public function __construct( public readonly ?bool $muted = null, public readonly ?string $blocked = null ) { }
/** * Get the lexicon NSID for this data type. * * @return string */ public static function getLexicon(): string { return 'app.bsky.graph.defs.listViewerState'; }
/** * Create an instance from an array. * * @param array $data The data array * @return static */ public static function fromArray(array $data): static { return new static( muted: $data['muted'] ?? null, blocked: $data['blocked'] ?? null ); }
}