<?php

/**
 * This code was generated by
 * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
 *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
 *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
 *
 * Twilio - Lookups
 * This is the public Twilio REST API.
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


namespace Twilio\Rest\Lookups\V2;

use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Values;
use Twilio\Version;


/**
 * @property string $field
 * @property int $limit
 * @property string $bucket
 * @property string $owner
 * @property int $ttl
 */
class BucketInstance extends InstanceResource
{
    /**
     * Initialize the BucketInstance
     *
     * @param Version $version Version that contains the resource
     * @param mixed[] $payload The response payload
     * @param string $field bucket name
     * @param string $bucket bucket name
     */
    public function __construct(Version $version, array $payload, ?string $field = null, ?string $bucket = null)
    {
        parent::__construct($version);

        // Marshaled Properties
        $this->properties = [
            'field' => Values::array_get($payload, 'field'),
            'limit' => Values::array_get($payload, 'limit'),
            'bucket' => Values::array_get($payload, 'bucket'),
            'owner' => Values::array_get($payload, 'owner'),
            'ttl' => Values::array_get($payload, 'ttl'),
        ];

        $this->solution = ['field' => $field ?: $this->properties['field'], 'bucket' => $bucket ?: $this->properties['bucket'], ];
    }

    /**
     * Generate an instance context for the instance, the context is capable of
     * performing various actions.  All instance actions are proxied to the context
     *
     * @return BucketContext Context for this BucketInstance
     */
    protected function proxy(): BucketContext
    {
        if (!$this->context) {
            $this->context = new BucketContext(
                $this->version,
                $this->solution['field'],
                $this->solution['bucket']
            );
        }

        return $this->context;
    }

    /**
     * Delete the BucketInstance
     *
     * @return bool True if delete succeeds, false otherwise
     * @throws TwilioException When an HTTP error occurs.
     */
    public function delete(): bool
    {

        return $this->proxy()->delete();
    }

    /**
     * Fetch the BucketInstance
     *
     * @return BucketInstance Fetched BucketInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    public function fetch(): BucketInstance
    {

        return $this->proxy()->fetch();
    }

    /**
     * Update the BucketInstance
     *
     * @return BucketInstance Updated BucketInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    public function update(): BucketInstance
    {

        return $this->proxy()->update();
    }

    /**
     * Magic getter to access properties
     *
     * @param string $name Property to access
     * @return mixed The requested property
     * @throws TwilioException For unknown properties
     */
    public function __get(string $name)
    {
        if (\array_key_exists($name, $this->properties)) {
            return $this->properties[$name];
        }

        if (\property_exists($this, '_' . $name)) {
            $method = 'get' . \ucfirst($name);
            return $this->$method();
        }

        throw new TwilioException('Unknown property: ' . $name);
    }

    /**
     * Provide a friendly representation
     *
     * @return string Machine friendly representation
     */
    public function __toString(): string
    {
        $context = [];
        foreach ($this->solution as $key => $value) {
            $context[] = "$key=$value";
        }
        return '[Twilio.Lookups.V2.BucketInstance ' . \implode(' ', $context) . ']';
    }
}

