Api\StructType\ApiOffer::getOffer PHP Méthode

getOffer() public méthode

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
Résultat ApiOffer | null
    public function getOffer()
    {
        return isset($this->offer) ? $this->offer : null;
    }