<?php
|
namespace JVBase\managers\SEO\render\Thing\Intangible\Enumeration;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
|
class RefundTypeEnumeration extends Enumeration {
|
protected string $refundType;
|
protected array $allowedRefundType = [
|
'exchange' => 'https://schema.org/ExchangeRefund',
|
'full' => 'https://schema.org/FullRefund',
|
'credit' => 'https://schema.org/StoreCreditRefund'
|
];
|
}
|