Skip to content

Commit

Permalink
Update TrackingCategory.php
Browse files Browse the repository at this point in the history
get / set methods for TrackingOptionID
  • Loading branch information
hillsinfoodle committed Dec 16, 2021
1 parent 47bb4d4 commit cf7e521
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/XeroPHP/Models/Accounting/TrackingCategory.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,26 @@ public function setTrackingOptionName($value)
return $this;
}

/**
* @return string
*/
public function getTrackingOptionID()
{
return $this->_data['TrackingOptionID'];
}

/**
* @param string $value
*
* @return TrackingCategory
*/
public function setTrackingOptionID($value)
{
$this->propertyUpdated('TrackingOptionID', $value);
$this->_data['TrackingOptionID'] = $value;
return $this;
}

/**
* @return string
*/
Expand Down

0 comments on commit cf7e521

Please sign in to comment.