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 |
|
---|
18 | namespace Google\Service\RemoteBuildExecution;
|
---|
19 |
|
---|
20 | class GoogleDevtoolsRemoteworkersV1test2FileMetadata extends \Google\Model
|
---|
21 | {
|
---|
22 | public $contents;
|
---|
23 | protected $digestType = GoogleDevtoolsRemoteworkersV1test2Digest::class;
|
---|
24 | protected $digestDataType = '';
|
---|
25 | public $isExecutable;
|
---|
26 | public $path;
|
---|
27 |
|
---|
28 | public function setContents($contents)
|
---|
29 | {
|
---|
30 | $this->contents = $contents;
|
---|
31 | }
|
---|
32 | public function getContents()
|
---|
33 | {
|
---|
34 | return $this->contents;
|
---|
35 | }
|
---|
36 | /**
|
---|
37 | * @param GoogleDevtoolsRemoteworkersV1test2Digest
|
---|
38 | */
|
---|
39 | public function setDigest(GoogleDevtoolsRemoteworkersV1test2Digest $digest)
|
---|
40 | {
|
---|
41 | $this->digest = $digest;
|
---|
42 | }
|
---|
43 | /**
|
---|
44 | * @return GoogleDevtoolsRemoteworkersV1test2Digest
|
---|
45 | */
|
---|
46 | public function getDigest()
|
---|
47 | {
|
---|
48 | return $this->digest;
|
---|
49 | }
|
---|
50 | public function setIsExecutable($isExecutable)
|
---|
51 | {
|
---|
52 | $this->isExecutable = $isExecutable;
|
---|
53 | }
|
---|
54 | public function getIsExecutable()
|
---|
55 | {
|
---|
56 | return $this->isExecutable;
|
---|
57 | }
|
---|
58 | public function setPath($path)
|
---|
59 | {
|
---|
60 | $this->path = $path;
|
---|
61 | }
|
---|
62 | public function getPath()
|
---|
63 | {
|
---|
64 | return $this->path;
|
---|
65 | }
|
---|
66 | }
|
---|
67 |
|
---|
68 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
69 | class_alias(GoogleDevtoolsRemoteworkersV1test2FileMetadata::class, 'Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2FileMetadata');
|
---|