Google_PersonAgeRange
The Google Books Importer Google PersonAgeRange class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_PlusService.php
- class Google_PersonAgeRange extends Google_Model {
- public $max;
- public $min;
- public function setMax( $max) {
- $this->max = $max;
- }
- public function getMax() {
- return $this->max;
- }
- public function setMin( $min) {
- $this->min = $min;
- }
- public function getMin() {
- return $this->min;
- }
- }