relativePosition = $relativePosition; } /** * @return self::RELATIVE_POSITION_* */ public function getRelativePosition() { return $this->relativePosition; } /** * Optional. The absolute position of the section in the list of sections. The * position must be greater than 0. If the position is greater than the number * of sections, the section will be appended to the end of the list. This * operation inserts the section at the given position and shifts the original * section at that position, and those below it, to the next position. * * @param int $sortOrder */ public function setSortOrder($sortOrder) { $this->sortOrder = $sortOrder; } /** * @return int */ public function getSortOrder() { return $this->sortOrder; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PositionSectionRequest::class, 'Google_Service_HangoutsChat_PositionSectionRequest');