File "CatalogItemFoodAndBeverageDetailsIngredient.php"

Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/CatalogItemFoodAndBeverageDetailsIngredient.php
File size: 3.1 KB
MIME-type: text/x-php
Charset: utf-8

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models;

use stdClass;
/**
 * Describes the ingredient used in a `FOOD_AND_BEV` item.
 */
class CatalogItemFoodAndBeverageDetailsIngredient implements \JsonSerializable
{
    /**
     * @var string|null
     */
    private $type;
    /**
     * @var string|null
     */
    private $standardName;
    /**
     * @var array
     */
    private $customName = [];
    /**
     * Returns Type.
     * The type of dietary preference for the `FOOD_AND_BEV` type of items and integredients.
     */
    public function getType() : ?string
    {
        return $this->type;
    }
    /**
     * Sets Type.
     * The type of dietary preference for the `FOOD_AND_BEV` type of items and integredients.
     *
     * @maps type
     */
    public function setType(?string $type) : void
    {
        $this->type = $type;
    }
    /**
     * Returns Standard Name.
     * Standard ingredients for food and beverage items that are recommended on item creation.
     */
    public function getStandardName() : ?string
    {
        return $this->standardName;
    }
    /**
     * Sets Standard Name.
     * Standard ingredients for food and beverage items that are recommended on item creation.
     *
     * @maps standard_name
     */
    public function setStandardName(?string $standardName) : void
    {
        $this->standardName = $standardName;
    }
    /**
     * Returns Custom Name.
     * The name of a custom user-defined ingredient. This should be null if it's a standard dietary
     * preference.
     */
    public function getCustomName() : ?string
    {
        if (\count($this->customName) == 0) {
            return null;
        }
        return $this->customName['value'];
    }
    /**
     * Sets Custom Name.
     * The name of a custom user-defined ingredient. This should be null if it's a standard dietary
     * preference.
     *
     * @maps custom_name
     */
    public function setCustomName(?string $customName) : void
    {
        $this->customName['value'] = $customName;
    }
    /**
     * Unsets Custom Name.
     * The name of a custom user-defined ingredient. This should be null if it's a standard dietary
     * preference.
     */
    public function unsetCustomName() : void
    {
        $this->customName = [];
    }
    /**
     * Encode this object to JSON
     *
     * @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
     *        are set. (default: false)
     *
     * @return array|stdClass
     */
    #[\ReturnTypeWillChange]
    public function jsonSerialize(bool $asArrayWhenEmpty = \false)
    {
        $json = [];
        if (isset($this->type)) {
            $json['type'] = $this->type;
        }
        if (isset($this->standardName)) {
            $json['standard_name'] = $this->standardName;
        }
        if (!empty($this->customName)) {
            $json['custom_name'] = $this->customName['value'];
        }
        $json = \array_filter($json, function ($val) {
            return $val !== null;
        });
        return !$asArrayWhenEmpty && empty($json) ? new stdClass() : $json;
    }
}