• File: Identifier.php
  • Full Path: /home/docteuh/www/google_search_console/Struct/Identifier.php
  • Date Modified: 06/18/2026 4:25 PM
  • File size: 276 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace LE_ACME2\Response\Authorization\Struct;
defined('ABSPATH') or die();

class Identifier {

    public $type;
    public $value;

    public function __construct(string $type, string $value) {

        $this->type = $type;
        $this->value = $value;
    }
}