File "MeasurementUnitVolume.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/MeasurementUnitVolume.php
File size: 1.39 KB
MIME-type: text/x-php
Charset: utf-8

<?php

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

/**
 * The unit of volume used to measure a quantity.
 */
class MeasurementUnitVolume
{
    /**
     * The volume is measured in ounces.
     */
    public const GENERIC_FLUID_OUNCE = 'GENERIC_FLUID_OUNCE';
    /**
     * The volume is measured in shots.
     */
    public const GENERIC_SHOT = 'GENERIC_SHOT';
    /**
     * The volume is measured in cups.
     */
    public const GENERIC_CUP = 'GENERIC_CUP';
    /**
     * The volume is measured in pints.
     */
    public const GENERIC_PINT = 'GENERIC_PINT';
    /**
     * The volume is measured in quarts.
     */
    public const GENERIC_QUART = 'GENERIC_QUART';
    /**
     * The volume is measured in gallons.
     */
    public const GENERIC_GALLON = 'GENERIC_GALLON';
    /**
     * The volume is measured in cubic inches.
     */
    public const IMPERIAL_CUBIC_INCH = 'IMPERIAL_CUBIC_INCH';
    /**
     * The volume is measured in cubic feet.
     */
    public const IMPERIAL_CUBIC_FOOT = 'IMPERIAL_CUBIC_FOOT';
    /**
     * The volume is measured in cubic yards.
     */
    public const IMPERIAL_CUBIC_YARD = 'IMPERIAL_CUBIC_YARD';
    /**
     * The volume is measured in metric milliliters.
     */
    public const METRIC_MILLILITER = 'METRIC_MILLILITER';
    /**
     * The volume is measured in metric liters.
     */
    public const METRIC_LITER = 'METRIC_LITER';
}