70 lines
2 KiB
PHP
70 lines
2 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: proApiV1Macro.proto
|
|
|
|
namespace Rv\Data\API_v1_Macro_Response;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.API_v1_Macro_Response.MacroCollections</code>
|
|
*/
|
|
class MacroCollections extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_Macro_Response.MacroCollections.Collections macro_collections = 1;</code>
|
|
*/
|
|
protected $macro_collections = null;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type \Rv\Data\API_v1_Macro_Response\MacroCollections\Collections $macro_collections
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\ProApiV1Macro::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_Macro_Response.MacroCollections.Collections macro_collections = 1;</code>
|
|
* @return \Rv\Data\API_v1_Macro_Response\MacroCollections\Collections|null
|
|
*/
|
|
public function getMacroCollections()
|
|
{
|
|
return $this->macro_collections;
|
|
}
|
|
|
|
public function hasMacroCollections()
|
|
{
|
|
return isset($this->macro_collections);
|
|
}
|
|
|
|
public function clearMacroCollections()
|
|
{
|
|
unset($this->macro_collections);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.data.API_v1_Macro_Response.MacroCollections.Collections macro_collections = 1;</code>
|
|
* @param \Rv\Data\API_v1_Macro_Response\MacroCollections\Collections $var
|
|
* @return $this
|
|
*/
|
|
public function setMacroCollections($var)
|
|
{
|
|
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Macro_Response\MacroCollections\Collections::class);
|
|
$this->macro_collections = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|