Jake Vanderwerf
6 days ago a9b3b28d001941921aa70d37fdc87c758a163a44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace JVBase\managers\SEO\render\Traits\_Properties;
 
use JVBase\managers\SEO\render\DataType\Time;
 
if (!defined('ABSPATH')) {
    exit;
}
trait cutoffTimeTrait {
    /**
     * @var Time Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the ShippingRateSettings publication pattern. The time is indicated using the ISO-8601 Time format, e.g. "23:30:00-05:00" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).
     */
    protected Time $cutoffTime;
 
    public function getCutoffTime():?Time
    {
        return $this->cutoffTime??null;
    }
    public function setCutoffTime(Time $cutoffTime):void
    {
        $this->cutoffTime = $cutoffTime;
    }
}