1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Verifiedaccess\Resource;
19
20use Google\Service\Verifiedaccess\Challenge as ChallengeModel;
21use Google\Service\Verifiedaccess\VerifiedaccessEmpty;
22use Google\Service\Verifiedaccess\VerifyChallengeResponseRequest;
23use Google\Service\Verifiedaccess\VerifyChallengeResponseResult;
24
25/**
26 * The "challenge" collection of methods.
27 * Typical usage is:
28 *  <code>
29 *   $verifiedaccessService = new Google\Service\Verifiedaccess(...);
30 *   $challenge = $verifiedaccessService->challenge;
31 *  </code>
32 */
33class Challenge extends \Google\Service\Resource
34{
35  /**
36   * CreateChallenge API (challenge.create)
37   *
38   * @param VerifiedaccessEmpty $postBody
39   * @param array $optParams Optional parameters.
40   * @return ChallengeModel
41   */
42  public function create(VerifiedaccessEmpty $postBody, $optParams = [])
43  {
44    $params = ['postBody' => $postBody];
45    $params = array_merge($params, $optParams);
46    return $this->call('create', [$params], ChallengeModel::class);
47  }
48  /**
49   * VerifyChallengeResponse API (challenge.verify)
50   *
51   * @param VerifyChallengeResponseRequest $postBody
52   * @param array $optParams Optional parameters.
53   * @return VerifyChallengeResponseResult
54   */
55  public function verify(VerifyChallengeResponseRequest $postBody, $optParams = [])
56  {
57    $params = ['postBody' => $postBody];
58    $params = array_merge($params, $optParams);
59    return $this->call('verify', [$params], VerifyChallengeResponseResult::class);
60  }
61}
62
63// Adding a class alias for backwards compatibility with the previous class name.
64class_alias(Challenge::class, 'Google_Service_Verifiedaccess_Resource_Challenge');
65