Google_Member
The Google Books Importer Google Member class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_DirectoryService.php
- class Google_Member extends Google_Model {
- public $email;
- public $id;
- public $kind;
- public $role;
- public $type;
- public function setEmail($email) {
- $this->email = $email;
- }
- public function getEmail() {
- return $this->email;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setRole($role) {
- $this->role = $role;
- }
- public function getRole() {
- return $this->role;
- }
- public function setType($type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- }