<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/contactcenterinsights/v1/contact_center_insights.proto

namespace Google\Cloud\ContactCenterInsights\V1;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * The request to create an issue model.
 *
 * Generated from protobuf message <code>google.cloud.contactcenterinsights.v1.CreateIssueModelRequest</code>
 */
class CreateIssueModelRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. The parent resource of the issue model.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $parent = '';
    /**
     * Required. The issue model to create.
     *
     * Generated from protobuf field <code>.google.cloud.contactcenterinsights.v1.IssueModel issue_model = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     */
    private $issue_model = null;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $parent
     *           Required. The parent resource of the issue model.
     *     @type \Google\Cloud\ContactCenterInsights\V1\IssueModel $issue_model
     *           Required. The issue model to create.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Contactcenterinsights\V1\ContactCenterInsights::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. The parent resource of the issue model.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getParent()
    {
        return $this->parent;
    }

    /**
     * Required. The parent resource of the issue model.
     *
     * Generated from protobuf field <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setParent($var)
    {
        GPBUtil::checkString($var, True);
        $this->parent = $var;

        return $this;
    }

    /**
     * Required. The issue model to create.
     *
     * Generated from protobuf field <code>.google.cloud.contactcenterinsights.v1.IssueModel issue_model = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @return \Google\Cloud\ContactCenterInsights\V1\IssueModel|null
     */
    public function getIssueModel()
    {
        return $this->issue_model;
    }

    public function hasIssueModel()
    {
        return isset($this->issue_model);
    }

    public function clearIssueModel()
    {
        unset($this->issue_model);
    }

    /**
     * Required. The issue model to create.
     *
     * Generated from protobuf field <code>.google.cloud.contactcenterinsights.v1.IssueModel issue_model = 2 [(.google.api.field_behavior) = REQUIRED];</code>
     * @param \Google\Cloud\ContactCenterInsights\V1\IssueModel $var
     * @return $this
     */
    public function setIssueModel($var)
    {
        GPBUtil::checkMessage($var, \Google\Cloud\ContactCenterInsights\V1\IssueModel::class);
        $this->issue_model = $var;

        return $this;
    }

}

