<?php
namespace LE_ACME2\Response\Authorization\Struct;
defined('ABSPATH') or die();
class Challenge {
const STATUS_PROGRESSING = 'processing';
const STATUS_PENDING = 'pending';
const STATUS_VALID = 'valid';
const STATUS_INVALID = 'invalid';
public $type;
public $status;
public $url;
public $token;
public function __construct(string $type, string $status, string $url, string $token) {
$this->type = $type;
$this->status = $status;
$this->url = $url;
$this->token = $token;
}
}