ok

Mini Shell

Direktori : /proc/self/root/home2/selectio/www/ramali.in/dashboard/api-firebase/razorpay/src/
Upload File :
Current File : //proc/self/root/home2/selectio/www/ramali.in/dashboard/api-firebase/razorpay/src/Settlement.php

<?php

namespace Razorpay\Api;

/**
 * Settlement related actions can be done from here
 */
class Settlement extends Entity
{
    /**
     * Fetch single settlement entity
     * @param  string      $id
     * @return Settlement
     */
    public function fetch($id)
    {
        return parent::fetch($id);
    }

    /**
     * Get all settlements according to options
     * @param  array       $options
     * @return Collection
     */
    public function all($options = array())
    {
        return parent::all($options);
    }

    /**
     * Get combined report of settlements
     * @param  array  $options
     * @return array
     */
    public function reports($options = array())
    {
        $relativeUrl = $this->getEntityUrl() . 'report/combined';

        return $this->request('GET', $relativeUrl, $options);
    }
}


Zerion Mini Shell 1.0