source: vendor/google/apiclient-services/src/Dataform/CompilationResultAction.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.3 KB
Line 
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\Dataform;
19
20class CompilationResultAction extends \Google\Model
21{
22 protected $assertionType = Assertion::class;
23 protected $assertionDataType = '';
24 protected $canonicalTargetType = Target::class;
25 protected $canonicalTargetDataType = '';
26 protected $declarationType = Declaration::class;
27 protected $declarationDataType = '';
28 /**
29 * @var string
30 */
31 public $filePath;
32 protected $notebookType = Notebook::class;
33 protected $notebookDataType = '';
34 protected $operationsType = Operations::class;
35 protected $operationsDataType = '';
36 protected $relationType = Relation::class;
37 protected $relationDataType = '';
38 protected $targetType = Target::class;
39 protected $targetDataType = '';
40
41 /**
42 * @param Assertion
43 */
44 public function setAssertion(Assertion $assertion)
45 {
46 $this->assertion = $assertion;
47 }
48 /**
49 * @return Assertion
50 */
51 public function getAssertion()
52 {
53 return $this->assertion;
54 }
55 /**
56 * @param Target
57 */
58 public function setCanonicalTarget(Target $canonicalTarget)
59 {
60 $this->canonicalTarget = $canonicalTarget;
61 }
62 /**
63 * @return Target
64 */
65 public function getCanonicalTarget()
66 {
67 return $this->canonicalTarget;
68 }
69 /**
70 * @param Declaration
71 */
72 public function setDeclaration(Declaration $declaration)
73 {
74 $this->declaration = $declaration;
75 }
76 /**
77 * @return Declaration
78 */
79 public function getDeclaration()
80 {
81 return $this->declaration;
82 }
83 /**
84 * @param string
85 */
86 public function setFilePath($filePath)
87 {
88 $this->filePath = $filePath;
89 }
90 /**
91 * @return string
92 */
93 public function getFilePath()
94 {
95 return $this->filePath;
96 }
97 /**
98 * @param Notebook
99 */
100 public function setNotebook(Notebook $notebook)
101 {
102 $this->notebook = $notebook;
103 }
104 /**
105 * @return Notebook
106 */
107 public function getNotebook()
108 {
109 return $this->notebook;
110 }
111 /**
112 * @param Operations
113 */
114 public function setOperations(Operations $operations)
115 {
116 $this->operations = $operations;
117 }
118 /**
119 * @return Operations
120 */
121 public function getOperations()
122 {
123 return $this->operations;
124 }
125 /**
126 * @param Relation
127 */
128 public function setRelation(Relation $relation)
129 {
130 $this->relation = $relation;
131 }
132 /**
133 * @return Relation
134 */
135 public function getRelation()
136 {
137 return $this->relation;
138 }
139 /**
140 * @param Target
141 */
142 public function setTarget(Target $target)
143 {
144 $this->target = $target;
145 }
146 /**
147 * @return Target
148 */
149 public function getTarget()
150 {
151 return $this->target;
152 }
153}
154
155// Adding a class alias for backwards compatibility with the previous class name.
156class_alias(CompilationResultAction::class, 'Google_Service_Dataform_CompilationResultAction');
Note: See TracBrowser for help on using the repository browser.