Files
kulakpos_web/vendor/google/common-protos/src/Api/FieldInfo.php

118 lines
4.0 KiB
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/api/field_info.proto
namespace Google\Api;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
2026-04-18 20:32:18 +07:00
use Google\Protobuf\RepeatedField;
2026-03-30 14:54:57 +07:00
/**
* Rich semantic information of an API field beyond basic typing.
*
* Generated from protobuf message <code>google.api.FieldInfo</code>
*/
class FieldInfo extends \Google\Protobuf\Internal\Message
{
/**
* The standard format of a field value. This does not explicitly configure
* any API consumer, just documents the API's format for the field it is
* applied to.
*
* Generated from protobuf field <code>.google.api.FieldInfo.Format format = 1;</code>
*/
protected $format = 0;
/**
* The type(s) that the annotated, generic field may represent.
* Currently, this must only be used on fields of type `google.protobuf.Any`.
* Supporting other generic types may be considered in the future.
*
* Generated from protobuf field <code>repeated .google.api.TypeReference referenced_types = 2;</code>
*/
private $referenced_types;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $format
* The standard format of a field value. This does not explicitly configure
* any API consumer, just documents the API's format for the field it is
* applied to.
2026-04-18 20:32:18 +07:00
* @type \Google\Api\TypeReference[] $referenced_types
2026-03-30 14:54:57 +07:00
* The type(s) that the annotated, generic field may represent.
* Currently, this must only be used on fields of type `google.protobuf.Any`.
* Supporting other generic types may be considered in the future.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Api\FieldInfo::initOnce();
parent::__construct($data);
}
/**
* The standard format of a field value. This does not explicitly configure
* any API consumer, just documents the API's format for the field it is
* applied to.
*
* Generated from protobuf field <code>.google.api.FieldInfo.Format format = 1;</code>
* @return int
*/
public function getFormat()
{
return $this->format;
}
/**
* The standard format of a field value. This does not explicitly configure
* any API consumer, just documents the API's format for the field it is
* applied to.
*
* Generated from protobuf field <code>.google.api.FieldInfo.Format format = 1;</code>
* @param int $var
* @return $this
*/
public function setFormat($var)
{
GPBUtil::checkEnum($var, \Google\Api\FieldInfo\Format::class);
$this->format = $var;
return $this;
}
/**
* The type(s) that the annotated, generic field may represent.
* Currently, this must only be used on fields of type `google.protobuf.Any`.
* Supporting other generic types may be considered in the future.
*
* Generated from protobuf field <code>repeated .google.api.TypeReference referenced_types = 2;</code>
2026-04-18 20:32:18 +07:00
* @return RepeatedField<\Google\Api\TypeReference>
2026-03-30 14:54:57 +07:00
*/
public function getReferencedTypes()
{
return $this->referenced_types;
}
/**
* The type(s) that the annotated, generic field may represent.
* Currently, this must only be used on fields of type `google.protobuf.Any`.
* Supporting other generic types may be considered in the future.
*
* Generated from protobuf field <code>repeated .google.api.TypeReference referenced_types = 2;</code>
2026-04-18 20:32:18 +07:00
* @param \Google\Api\TypeReference[] $var
2026-03-30 14:54:57 +07:00
* @return $this
*/
public function setReferencedTypes($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Api\TypeReference::class);
$this->referenced_types = $arr;
return $this;
}
}