source: vendor/google/apiclient-services/src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest.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: 4.5 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\Contactcenterinsights;
19
20class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest extends \Google\Model
21{
22 protected $conversationConfigType = GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig::class;
23 protected $conversationConfigDataType = '';
24 protected $gcsSourceType = GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource::class;
25 protected $gcsSourceDataType = '';
26 /**
27 * @var string
28 */
29 public $parent;
30 protected $redactionConfigType = GoogleCloudContactcenterinsightsV1alpha1RedactionConfig::class;
31 protected $redactionConfigDataType = '';
32 /**
33 * @var int
34 */
35 public $sampleSize;
36 protected $speechConfigType = GoogleCloudContactcenterinsightsV1alpha1SpeechConfig::class;
37 protected $speechConfigDataType = '';
38 protected $transcriptObjectConfigType = GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig::class;
39 protected $transcriptObjectConfigDataType = '';
40
41 /**
42 * @param GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig
43 */
44 public function setConversationConfig(GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig $conversationConfig)
45 {
46 $this->conversationConfig = $conversationConfig;
47 }
48 /**
49 * @return GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig
50 */
51 public function getConversationConfig()
52 {
53 return $this->conversationConfig;
54 }
55 /**
56 * @param GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource
57 */
58 public function setGcsSource(GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource $gcsSource)
59 {
60 $this->gcsSource = $gcsSource;
61 }
62 /**
63 * @return GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource
64 */
65 public function getGcsSource()
66 {
67 return $this->gcsSource;
68 }
69 /**
70 * @param string
71 */
72 public function setParent($parent)
73 {
74 $this->parent = $parent;
75 }
76 /**
77 * @return string
78 */
79 public function getParent()
80 {
81 return $this->parent;
82 }
83 /**
84 * @param GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
85 */
86 public function setRedactionConfig(GoogleCloudContactcenterinsightsV1alpha1RedactionConfig $redactionConfig)
87 {
88 $this->redactionConfig = $redactionConfig;
89 }
90 /**
91 * @return GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
92 */
93 public function getRedactionConfig()
94 {
95 return $this->redactionConfig;
96 }
97 /**
98 * @param int
99 */
100 public function setSampleSize($sampleSize)
101 {
102 $this->sampleSize = $sampleSize;
103 }
104 /**
105 * @return int
106 */
107 public function getSampleSize()
108 {
109 return $this->sampleSize;
110 }
111 /**
112 * @param GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
113 */
114 public function setSpeechConfig(GoogleCloudContactcenterinsightsV1alpha1SpeechConfig $speechConfig)
115 {
116 $this->speechConfig = $speechConfig;
117 }
118 /**
119 * @return GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
120 */
121 public function getSpeechConfig()
122 {
123 return $this->speechConfig;
124 }
125 /**
126 * @param GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig
127 */
128 public function setTranscriptObjectConfig(GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig $transcriptObjectConfig)
129 {
130 $this->transcriptObjectConfig = $transcriptObjectConfig;
131 }
132 /**
133 * @return GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig
134 */
135 public function getTranscriptObjectConfig()
136 {
137 return $this->transcriptObjectConfig;
138 }
139}
140
141// Adding a class alias for backwards compatibility with the previous class name.
142class_alias(GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest');
Note: See TracBrowser for help on using the repository browser.