Api\StructType\ApiOffer::getOffer PHP Метод

getOffer() публичный Метод

Get offer value An additional test has been added (isset) before returning the property value as this property may have been unset before, due to the fact that this property is removable from the request (nillable=true+minOccurs=0)
public getOffer ( ) : ApiOffer | null
Результат ApiOffer | null
    public function getOffer()
    {
        return isset($this->offer) ? $this->offer : null;
    }