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\Transcoder;
|
---|
19 |
|
---|
20 | class AudioMapping extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $atomKey;
|
---|
26 | public $gainDb;
|
---|
27 | /**
|
---|
28 | * @var int
|
---|
29 | */
|
---|
30 | public $inputChannel;
|
---|
31 | /**
|
---|
32 | * @var string
|
---|
33 | */
|
---|
34 | public $inputKey;
|
---|
35 | /**
|
---|
36 | * @var int
|
---|
37 | */
|
---|
38 | public $inputTrack;
|
---|
39 | /**
|
---|
40 | * @var int
|
---|
41 | */
|
---|
42 | public $outputChannel;
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * @param string
|
---|
46 | */
|
---|
47 | public function setAtomKey($atomKey)
|
---|
48 | {
|
---|
49 | $this->atomKey = $atomKey;
|
---|
50 | }
|
---|
51 | /**
|
---|
52 | * @return string
|
---|
53 | */
|
---|
54 | public function getAtomKey()
|
---|
55 | {
|
---|
56 | return $this->atomKey;
|
---|
57 | }
|
---|
58 | public function setGainDb($gainDb)
|
---|
59 | {
|
---|
60 | $this->gainDb = $gainDb;
|
---|
61 | }
|
---|
62 | public function getGainDb()
|
---|
63 | {
|
---|
64 | return $this->gainDb;
|
---|
65 | }
|
---|
66 | /**
|
---|
67 | * @param int
|
---|
68 | */
|
---|
69 | public function setInputChannel($inputChannel)
|
---|
70 | {
|
---|
71 | $this->inputChannel = $inputChannel;
|
---|
72 | }
|
---|
73 | /**
|
---|
74 | * @return int
|
---|
75 | */
|
---|
76 | public function getInputChannel()
|
---|
77 | {
|
---|
78 | return $this->inputChannel;
|
---|
79 | }
|
---|
80 | /**
|
---|
81 | * @param string
|
---|
82 | */
|
---|
83 | public function setInputKey($inputKey)
|
---|
84 | {
|
---|
85 | $this->inputKey = $inputKey;
|
---|
86 | }
|
---|
87 | /**
|
---|
88 | * @return string
|
---|
89 | */
|
---|
90 | public function getInputKey()
|
---|
91 | {
|
---|
92 | return $this->inputKey;
|
---|
93 | }
|
---|
94 | /**
|
---|
95 | * @param int
|
---|
96 | */
|
---|
97 | public function setInputTrack($inputTrack)
|
---|
98 | {
|
---|
99 | $this->inputTrack = $inputTrack;
|
---|
100 | }
|
---|
101 | /**
|
---|
102 | * @return int
|
---|
103 | */
|
---|
104 | public function getInputTrack()
|
---|
105 | {
|
---|
106 | return $this->inputTrack;
|
---|
107 | }
|
---|
108 | /**
|
---|
109 | * @param int
|
---|
110 | */
|
---|
111 | public function setOutputChannel($outputChannel)
|
---|
112 | {
|
---|
113 | $this->outputChannel = $outputChannel;
|
---|
114 | }
|
---|
115 | /**
|
---|
116 | * @return int
|
---|
117 | */
|
---|
118 | public function getOutputChannel()
|
---|
119 | {
|
---|
120 | return $this->outputChannel;
|
---|
121 | }
|
---|
122 | }
|
---|
123 |
|
---|
124 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
125 | class_alias(AudioMapping::class, 'Google_Service_Transcoder_AudioMapping');
|
---|