12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
|
|
namespace x13allegro\Api\Model\Offers;
|
|
|
|
final class PublicationStatus
|
|
{
|
|
const INACTIVE = 'INACTIVE';
|
|
const ACTIVATING = 'ACTIVATING';
|
|
const ACTIVE = 'ACTIVE';
|
|
const ENDED = 'ENDED';
|
|
}
|