whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
square
/
square
/
src
/
Models
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/square/square/src/Models/MeasurementUnitVolume.php
<?php declare(strict_types=1); namespace 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'; }
Copyright ©2021 || Defacer Indonesia