orca-services/nova-api-php

View on GitHub
src/Result/NovaMessage.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OrcaServices\NovaApi\Result;

/**
 * Element: ns13:meldung.
 */
final class NovaMessage
{
    /**
     * @var string|null The value
     */
    public $id;

    /**
     * @var string|null The value
     */
    public $code;

    /**
     * @var string|null The value
     */
    public $timestamp;

    /**
     * @var string|null The value
     */
    public $type;

    /**
     * @var string|null The value
     */
    public $customerRelevant;

    /**
     * @var string|null The value
     */
    public $message;
}