HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/MeasurementUnitArea.php
<?php

declare(strict_types=1);

namespace Square\Models;

/**
 * Unit of area used to measure a quantity.
 */
class MeasurementUnitArea
{
    /**
     * The area is measured in acres.
     */
    public const IMPERIAL_ACRE = 'IMPERIAL_ACRE';

    /**
     * The area is measured in square inches.
     */
    public const IMPERIAL_SQUARE_INCH = 'IMPERIAL_SQUARE_INCH';

    /**
     * The area is measured in square feet.
     */
    public const IMPERIAL_SQUARE_FOOT = 'IMPERIAL_SQUARE_FOOT';

    /**
     * The area is measured in square yards.
     */
    public const IMPERIAL_SQUARE_YARD = 'IMPERIAL_SQUARE_YARD';

    /**
     * The area is measured in square miles.
     */
    public const IMPERIAL_SQUARE_MILE = 'IMPERIAL_SQUARE_MILE';

    /**
     * The area is measured in square centimeters.
     */
    public const METRIC_SQUARE_CENTIMETER = 'METRIC_SQUARE_CENTIMETER';

    /**
     * The area is measured in square meters.
     */
    public const METRIC_SQUARE_METER = 'METRIC_SQUARE_METER';

    /**
     * The area is measured in square kilometers.
     */
    public const METRIC_SQUARE_KILOMETER = 'METRIC_SQUARE_KILOMETER';
}