mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-09 11:08:34 +01:00
27 lines
538 B
PHP
27 lines
538 B
PHP
<?php
|
|
|
|
namespace Stripe\Radar;
|
|
|
|
/**
|
|
* Class ValueListItem
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property int $created
|
|
* @property string $created_by
|
|
* @property string $list
|
|
* @property bool $livemode
|
|
* @property string $value
|
|
*
|
|
* @package Stripe\Radar
|
|
*/
|
|
class ValueListItem extends \Stripe\ApiResource
|
|
{
|
|
const OBJECT_NAME = "radar.value_list_item";
|
|
|
|
use \Stripe\ApiOperations\All;
|
|
use \Stripe\ApiOperations\Create;
|
|
use \Stripe\ApiOperations\Delete;
|
|
use \Stripe\ApiOperations\Retrieve;
|
|
}
|