mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 18:48:22 +01:00
18 lines
223 B
PHP
18 lines
223 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class ExchangeRate
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class ExchangeRate extends ApiResource
|
|
{
|
|
|
|
const OBJECT_NAME = "exchange_rate";
|
|
|
|
use ApiOperations\All;
|
|
use ApiOperations\Retrieve;
|
|
}
|