_propDict)) { return $this->_propDict["isDescending"]; } else { return null; } } /** * Sets the isDescending * True if the sort order is descending. Default is false, with the sort order as ascending. Optional. * * @param bool $val The value of the isDescending * * @return SortProperty */ public function setIsDescending($val) { $this->_propDict["isDescending"] = $val; return $this; } /** * Gets the name * The name of the property to sort on. Required. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name of the property to sort on. Required. * * @param string $val The value of the name * * @return SortProperty */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } }