JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "FormResponse.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Forms/FormResponse.php
File size: 3.84 KB
MIME-type: text/x-php
Charset: utf-8

<?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\Forms;

class FormResponse extends \Google\Model
{
  protected $answersType = Answer::class;
  protected $answersDataType = 'map';
  /**
   * Output only. Timestamp for the first time the response was submitted.
   *
   * @var string
   */
  public $createTime;
  /**
   * Output only. The form ID.
   *
   * @var string
   */
  public $formId;
  /**
   * Output only. Timestamp for the most recent time the response was submitted.
   * Does not track changes to grades.
   *
   * @var string
   */
  public $lastSubmittedTime;
  /**
   * Output only. The email address (if collected) for the respondent.
   *
   * @var string
   */
  public $respondentEmail;
  /**
   * Output only. The response ID.
   *
   * @var string
   */
  public $responseId;
  /**
   * Output only. The total number of points the respondent received for their
   * submission Only set if the form was a quiz and the response was graded.
   * This includes points automatically awarded via autograding adjusted by any
   * manual corrections entered by the form owner.
   *
   * @var 
   */
  public $totalScore;

  /**
   * Output only. The actual answers to the questions, keyed by question_id.
   *
   * @param Answer[] $answers
   */
  public function setAnswers($answers)
  {
    $this->answers = $answers;
  }
  /**
   * @return Answer[]
   */
  public function getAnswers()
  {
    return $this->answers;
  }
  /**
   * Output only. Timestamp for the first time the response was submitted.
   *
   * @param string $createTime
   */
  public function setCreateTime($createTime)
  {
    $this->createTime = $createTime;
  }
  /**
   * @return string
   */
  public function getCreateTime()
  {
    return $this->createTime;
  }
  /**
   * Output only. The form ID.
   *
   * @param string $formId
   */
  public function setFormId($formId)
  {
    $this->formId = $formId;
  }
  /**
   * @return string
   */
  public function getFormId()
  {
    return $this->formId;
  }
  /**
   * Output only. Timestamp for the most recent time the response was submitted.
   * Does not track changes to grades.
   *
   * @param string $lastSubmittedTime
   */
  public function setLastSubmittedTime($lastSubmittedTime)
  {
    $this->lastSubmittedTime = $lastSubmittedTime;
  }
  /**
   * @return string
   */
  public function getLastSubmittedTime()
  {
    return $this->lastSubmittedTime;
  }
  /**
   * Output only. The email address (if collected) for the respondent.
   *
   * @param string $respondentEmail
   */
  public function setRespondentEmail($respondentEmail)
  {
    $this->respondentEmail = $respondentEmail;
  }
  /**
   * @return string
   */
  public function getRespondentEmail()
  {
    return $this->respondentEmail;
  }
  /**
   * Output only. The response ID.
   *
   * @param string $responseId
   */
  public function setResponseId($responseId)
  {
    $this->responseId = $responseId;
  }
  /**
   * @return string
   */
  public function getResponseId()
  {
    return $this->responseId;
  }
  public function setTotalScore($totalScore)
  {
    $this->totalScore = $totalScore;
  }
  public function getTotalScore()
  {
    return $this->totalScore;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(FormResponse::class, 'Google_Service_Forms_FormResponse');