Files
Commerce/lib/mollie/src/Resources/Issuer.php
“VeLiTi” 6f1cc27ec4 Initial commit
2025-01-30 11:43:37 +01:00

33 lines
533 B
PHP

<?php
namespace Mollie\Api\Resources;
class Issuer extends \Mollie\Api\Resources\BaseResource
{
/**
* Id of the issuer.
*
* @var string
*/
public $id;
/**
* Name of the issuer.
*
* @var string
*/
public $name;
/**
* The payment method this issuer belongs to.
*
* @see Mollie_API_Object_Method
* @var string
*/
public $method;
/**
* Object containing a size1x or size2x image
*
* @var \stdClass
*/
public $image;
}