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
18class Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2RequestMetadata extends Google_Model
19{
20  public $actionId;
21  public $actionMnemonic;
22  public $configurationId;
23  public $correlatedInvocationsId;
24  public $targetId;
25  protected $toolDetailsType = 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails';
26  protected $toolDetailsDataType = '';
27  public $toolInvocationId;
28
29  public function setActionId($actionId)
30  {
31    $this->actionId = $actionId;
32  }
33  public function getActionId()
34  {
35    return $this->actionId;
36  }
37  public function setActionMnemonic($actionMnemonic)
38  {
39    $this->actionMnemonic = $actionMnemonic;
40  }
41  public function getActionMnemonic()
42  {
43    return $this->actionMnemonic;
44  }
45  public function setConfigurationId($configurationId)
46  {
47    $this->configurationId = $configurationId;
48  }
49  public function getConfigurationId()
50  {
51    return $this->configurationId;
52  }
53  public function setCorrelatedInvocationsId($correlatedInvocationsId)
54  {
55    $this->correlatedInvocationsId = $correlatedInvocationsId;
56  }
57  public function getCorrelatedInvocationsId()
58  {
59    return $this->correlatedInvocationsId;
60  }
61  public function setTargetId($targetId)
62  {
63    $this->targetId = $targetId;
64  }
65  public function getTargetId()
66  {
67    return $this->targetId;
68  }
69  /**
70   * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails
71   */
72  public function setToolDetails(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails $toolDetails)
73  {
74    $this->toolDetails = $toolDetails;
75  }
76  /**
77   * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ToolDetails
78   */
79  public function getToolDetails()
80  {
81    return $this->toolDetails;
82  }
83  public function setToolInvocationId($toolInvocationId)
84  {
85    $this->toolInvocationId = $toolInvocationId;
86  }
87  public function getToolInvocationId()
88  {
89    return $this->toolInvocationId;
90  }
91}
92