hnhdigital-os/php-linode-api

View on GitHub
src/endpoints/Account/Invoice.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HnhDigital\LinodeApi\Account;

/*
 * This file is part of the PHP Linode API.
 *
 * (c) H&H|Digital <hello@hnh.digital>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use HnhDigital\LinodeApi\Foundation\Base;

/**
 * This is the Invoice class.
 *
 * This file is automatically generated.
 *
 * @link https://developers.linode.com/api/v4#tag/Account-Invoices
 *
 * @author Rocco Howard <rocco@hnh.digital>
 */
class Invoice extends Base
{
    /**
     * Endpoint.
     *
     * @var string
     */
    protected $endpoint = 'account/invoices/%s';

    /**
     * Invoice Id.
     *
     * @var int
     */
    protected $invoice_id;

    /**
     * This model is fillable.
     *
     * @var bool
     */
    protected $fillable = true;

    /**
     * This model's method that provides the data to fill it.
     *
     * @var string
     */
    protected $fill_method = 'get';

    /**
     * Constructor.
     *
     * @return void
     */
    public function __construct($invoice_id, $fill = [])
    {
        $this->invoice_id = $invoice_id;
        parent::__construct($invoice_id, $fill);
    }

    /**
     * Returns a single Invoice object.
     *
     * @link https://developers.linode.com/api/v4#operation/getInvoice
     *
     * @return array
     */
    public function get()
    {
        return $this->apiCall('get', '', [], ['auto-fill' => true]);
    }

    /**
     * Returns a paginated list of Invoice items.
     *
     * @link https://developers.linode.com/api/v4#operation/getInvoiceItems
     *
     * @return array
     */
    public function getInvoiceItems()
    {
        return $this->apiSearch($this->endpoint.'/items', ['class' => 'Invoice\Item', 'parameters' => ['id']]);
    }
}