groupingId = $groupingId; } /** * @return string */ public function getGroupingId() { return $this->groupingId; } /** * Optional index for sorting the passes when they are grouped with other * passes. Passes with lower sort index are shown before passes with higher * sort index. If unspecified, the value is assumed to be INT_MAX. For two * passes with the same sort index, the sorting behavior is undefined. * * @param int $sortIndex */ public function setSortIndex($sortIndex) { $this->sortIndex = $sortIndex; } /** * @return int */ public function getSortIndex() { return $this->sortIndex; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GroupingInfo::class, 'Google_Service_Walletobjects_GroupingInfo');