mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-15 08:11:14 +01:00
14 lines
269 B
PHP
14 lines
269 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2025 Andreas Palm
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
namespace Xentral\Carrier\Go\Data;
|
|
|
|
class ErrorResponse {
|
|
public string $message;
|
|
public int $errorCode;
|
|
public int $status;
|
|
public \DateTime $timeStamp;
|
|
} |