📂 File Browser

/AgentAI/vendor/google/apiclient-services/src/Localservices
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 GoogleAdsHomeservicesLocalservicesV1AccountReport.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1AggregatorInfo.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1BookingLead.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1MessageLead.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1PhoneLead.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1SearchAccountReportsResponse.php
▶ Open 📄 View Source
🐘 GoogleAdsHomeservicesLocalservicesV1SearchDetailedLeadReportsResponse.php
▶ Open 📄 View Source
🐘 GoogleTypeTimeZone.php
▶ Open 📄 View Source

📄 Source: GoogleAdsHomeservicesLocalservicesV1MessageLead.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\Localservices;

class GoogleAdsHomeservicesLocalservicesV1MessageLead extends \Google\Model
{
  /**
   * Consumer phone number associated with the message lead.
   *
   * @var string
   */
  public $consumerPhoneNumber;
  /**
   * Name of the customer who created the lead.
   *
   * @var string
   */
  public $customerName;
  /**
   * The job type of the specified lead.
   *
   * @var string
   */
  public $jobType;
  /**
   * The postal code of the customer who created the lead.
   *
   * @var string
   */
  public $postalCode;

  /**
   * Consumer phone number associated with the message lead.
   *
   * @param string $consumerPhoneNumber
   */
  public function setConsumerPhoneNumber($consumerPhoneNumber)
  {
    $this->consumerPhoneNumber = $consumerPhoneNumber;
  }
  /**
   * @return string
   */
  public function getConsumerPhoneNumber()
  {
    return $this->consumerPhoneNumber;
  }
  /**
   * Name of the customer who created the lead.
   *
   * @param string $customerName
   */
  public function setCustomerName($customerName)
  {
    $this->customerName = $customerName;
  }
  /**
   * @return string
   */
  public function getCustomerName()
  {
    return $this->customerName;
  }
  /**
   * The job type of the specified lead.
   *
   * @param string $jobType
   */
  public function setJobType($jobType)
  {
    $this->jobType = $jobType;
  }
  /**
   * @return string
   */
  public function getJobType()
  {
    return $this->jobType;
  }
  /**
   * The postal code of the customer who created the lead.
   *
   * @param string $postalCode
   */
  public function setPostalCode($postalCode)
  {
    $this->postalCode = $postalCode;
  }
  /**
   * @return string
   */
  public function getPostalCode()
  {
    return $this->postalCode;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleAdsHomeservicesLocalservicesV1MessageLead::class, 'Google_Service_Localservices_GoogleAdsHomeservicesLocalservicesV1MessageLead');
← Back