PHP Classes

File: src/Enums/RefundReason.php

Recommend this page to a friend!
  Packages of Daryl Legion   PayRex Laravel   src/Enums/RefundReason.php   Download  
File: src/Enums/RefundReason.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PayRex Laravel
Request payments using the PayRex service
Author: By
Last change:
Date: 13 days ago
Size: 492 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
LegionHQ\LaravelPayrex\Enums;

enum RefundReason: string
{
    case
Fraudulent = 'fraudulent';
    case
RequestedByCustomer = 'requested_by_customer';
    case
ProductOutOfStock = 'product_out_of_stock';
    case
ServiceNotProvided = 'service_not_provided';
    case
ProductWasDamaged = 'product_was_damaged';
    case
ServiceMisaligned = 'service_misaligned';
    case
WrongProductReceived = 'wrong_product_received';
    case
Others = 'others';
}