-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate contactcenterinsights client (#6038)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-php-client-services/actions/workflows/codegen.yaml
- Loading branch information
1 parent
0f1d184
commit af1454f
Showing
7 changed files
with
300 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\Contactcenterinsights; | ||
|
||
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata extends \Google\Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $createTime; | ||
/** | ||
* @var string | ||
*/ | ||
public $endTime; | ||
protected $requestType = GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest::class; | ||
protected $requestDataType = ''; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setCreateTime($createTime) | ||
{ | ||
$this->createTime = $createTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getCreateTime() | ||
{ | ||
return $this->createTime; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setEndTime($endTime) | ||
{ | ||
$this->endTime = $endTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getEndTime() | ||
{ | ||
return $this->endTime; | ||
} | ||
/** | ||
* @param GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest | ||
*/ | ||
public function setRequest(GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest $request) | ||
{ | ||
$this->request = $request; | ||
} | ||
/** | ||
* @return GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest | ||
*/ | ||
public function getRequest() | ||
{ | ||
return $this->request; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata'); |
60 changes: 60 additions & 0 deletions
60
src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\Contactcenterinsights; | ||
|
||
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest extends \Google\Model | ||
{ | ||
protected $issueType = GoogleCloudContactcenterinsightsV1alpha1Issue::class; | ||
protected $issueDataType = ''; | ||
/** | ||
* @var string | ||
*/ | ||
public $parent; | ||
|
||
/** | ||
* @param GoogleCloudContactcenterinsightsV1alpha1Issue | ||
*/ | ||
public function setIssue(GoogleCloudContactcenterinsightsV1alpha1Issue $issue) | ||
{ | ||
$this->issue = $issue; | ||
} | ||
/** | ||
* @return GoogleCloudContactcenterinsightsV1alpha1Issue | ||
*/ | ||
public function getIssue() | ||
{ | ||
return $this->issue; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setParent($parent) | ||
{ | ||
$this->parent = $parent; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getParent() | ||
{ | ||
return $this->parent; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest'); |
135 changes: 135 additions & 0 deletions
135
src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1alpha1Issue.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
<?php | ||
/* | ||
* Copyright 2014 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
namespace Google\Service\Contactcenterinsights; | ||
|
||
class GoogleCloudContactcenterinsightsV1alpha1Issue extends \Google\Collection | ||
{ | ||
protected $collection_key = 'sampleUtterances'; | ||
/** | ||
* @var string | ||
*/ | ||
public $createTime; | ||
/** | ||
* @var string | ||
*/ | ||
public $displayDescription; | ||
/** | ||
* @var string | ||
*/ | ||
public $displayName; | ||
/** | ||
* @var string | ||
*/ | ||
public $name; | ||
/** | ||
* @var string[] | ||
*/ | ||
public $sampleUtterances; | ||
/** | ||
* @var string | ||
*/ | ||
public $updateTime; | ||
|
||
/** | ||
* @param string | ||
*/ | ||
public function setCreateTime($createTime) | ||
{ | ||
$this->createTime = $createTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getCreateTime() | ||
{ | ||
return $this->createTime; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setDisplayDescription($displayDescription) | ||
{ | ||
$this->displayDescription = $displayDescription; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDisplayDescription() | ||
{ | ||
return $this->displayDescription; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setDisplayName($displayName) | ||
{ | ||
$this->displayName = $displayName; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getDisplayName() | ||
{ | ||
return $this->displayName; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setName($name) | ||
{ | ||
$this->name = $name; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getName() | ||
{ | ||
return $this->name; | ||
} | ||
/** | ||
* @param string[] | ||
*/ | ||
public function setSampleUtterances($sampleUtterances) | ||
{ | ||
$this->sampleUtterances = $sampleUtterances; | ||
} | ||
/** | ||
* @return string[] | ||
*/ | ||
public function getSampleUtterances() | ||
{ | ||
return $this->sampleUtterances; | ||
} | ||
/** | ||
* @param string | ||
*/ | ||
public function setUpdateTime($updateTime) | ||
{ | ||
$this->updateTime = $updateTime; | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
public function getUpdateTime() | ||
{ | ||
return $this->updateTime; | ||
} | ||
} | ||
|
||
// Adding a class alias for backwards compatibility with the previous class name. | ||
class_alias(GoogleCloudContactcenterinsightsV1alpha1Issue::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1Issue'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters