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_Transcoder_ElementaryStream extends Google_Model
19{
20  protected $audioStreamType = 'Google_Service_Transcoder_AudioStream';
21  protected $audioStreamDataType = '';
22  public $key;
23  protected $textStreamType = 'Google_Service_Transcoder_TextStream';
24  protected $textStreamDataType = '';
25  protected $videoStreamType = 'Google_Service_Transcoder_VideoStream';
26  protected $videoStreamDataType = '';
27
28  /**
29   * @param Google_Service_Transcoder_AudioStream
30   */
31  public function setAudioStream(Google_Service_Transcoder_AudioStream $audioStream)
32  {
33    $this->audioStream = $audioStream;
34  }
35  /**
36   * @return Google_Service_Transcoder_AudioStream
37   */
38  public function getAudioStream()
39  {
40    return $this->audioStream;
41  }
42  public function setKey($key)
43  {
44    $this->key = $key;
45  }
46  public function getKey()
47  {
48    return $this->key;
49  }
50  /**
51   * @param Google_Service_Transcoder_TextStream
52   */
53  public function setTextStream(Google_Service_Transcoder_TextStream $textStream)
54  {
55    $this->textStream = $textStream;
56  }
57  /**
58   * @return Google_Service_Transcoder_TextStream
59   */
60  public function getTextStream()
61  {
62    return $this->textStream;
63  }
64  /**
65   * @param Google_Service_Transcoder_VideoStream
66   */
67  public function setVideoStream(Google_Service_Transcoder_VideoStream $videoStream)
68  {
69    $this->videoStream = $videoStream;
70  }
71  /**
72   * @return Google_Service_Transcoder_VideoStream
73   */
74  public function getVideoStream()
75  {
76    return $this->videoStream;
77  }
78}
79