Viewing file: FieldInfo.php (2.14 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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\RepeatedField; use Google\Protobuf\Internal\GPBUtil;
/** * 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;
/** * 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. * } */ 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; }
}
|