Google_JobState
The Google Books Importer Google JobState class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_CoordinateService.php
- class Google_JobState extends Google_Model {
- public $assignee;
- protected $__customFieldsType = 'Google_CustomFields';
- protected $__customFieldsDataType = '';
- public $customFields;
- public $customerName;
- public $customerPhoneNumber;
- public $kind;
- protected $__locationType = 'Google_Location';
- protected $__locationDataType = '';
- public $location;
- public $note;
- public $progress;
- public $title;
- public function setAssignee( $assignee) {
- $this->assignee = $assignee;
- }
- public function getAssignee() {
- return $this->assignee;
- }
- public function setCustomFields(Google_CustomFields $customFields) {
- $this->customFields = $customFields;
- }
- public function getCustomFields() {
- return $this->customFields;
- }
- public function setCustomerName( $customerName) {
- $this->customerName = $customerName;
- }
- public function getCustomerName() {
- return $this->customerName;
- }
- public function setCustomerPhoneNumber( $customerPhoneNumber) {
- $this->customerPhoneNumber = $customerPhoneNumber;
- }
- public function getCustomerPhoneNumber() {
- return $this->customerPhoneNumber;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setLocation(Google_Location $location) {
- $this->location = $location;
- }
- public function getLocation() {
- return $this->location;
- }
- public function setNote(/** array(Google_string) */ $note) {
- $this->assertIsArray($note, 'Google_string', __METHOD__);
- $this->note = $note;
- }
- public function getNote() {
- return $this->note;
- }
- public function setProgress( $progress) {
- $this->progress = $progress;
- }
- public function getProgress() {
- return $this->progress;
- }
- public function setTitle( $title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- }