mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
9 lines
147 B
PHP
9 lines
147 B
PHP
<?php
|
|
|
|
namespace Opdavies\Glassboxx\Enum;
|
|
|
|
final class InteractionType
|
|
{
|
|
public const LOAN = 'loan';
|
|
public const PURCHASE = 'purchase';
|
|
}
|