| Total Complexity | 2 | 
| Total Lines | 29 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 22 | class PaymentMethodsRequest { | 
            ||
| 23 | /**  | 
            ||
| 24 | * The merchant account identifier, with which you want to process the transaction.  | 
            ||
| 25 | *  | 
            ||
| 26 | * @var string  | 
            ||
| 27 | */  | 
            ||
| 28 | private $merchant_account;  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * Construct a payment request object.  | 
            ||
| 32 | *  | 
            ||
| 33 | * @param string $merchant_account The merchant account identifier.  | 
            ||
| 34 | */  | 
            ||
| 35 | 	public function __construct( $merchant_account ) { | 
            ||
| 36 | $this->merchant_account = $merchant_account;  | 
            ||
| 37 | }  | 
            ||
| 38 | |||
| 39 | /**  | 
            ||
| 40 | * Get JSON.  | 
            ||
| 41 | *  | 
            ||
| 42 | * @return object  | 
            ||
| 43 | */  | 
            ||
| 44 | 	public function get_json() { | 
            ||
| 51 | }  | 
            ||
| 52 | }  | 
            ||
| 53 |