PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.1.6
ShareThis Dashboard for Google Analytics v3.1.6
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / google / common-protos / src / Rpc / Help.php
googleanalytics / lib / analytics-admin / vendor / google / common-protos / src / Rpc Last commit date
BadRequest 3 years ago Help 3 years ago PreconditionFailure 3 years ago QuotaFailure 3 years ago BadRequest.php 3 years ago BadRequest_FieldViolation.php 3 years ago Code.php 3 years ago DebugInfo.php 3 years ago ErrorInfo.php 3 years ago Help.php 3 years ago Help_Link.php 3 years ago LocalizedMessage.php 3 years ago PreconditionFailure.php 3 years ago PreconditionFailure_Violation.php 3 years ago QuotaFailure.php 3 years ago QuotaFailure_Violation.php 3 years ago RequestInfo.php 3 years ago ResourceInfo.php 3 years ago RetryInfo.php 3 years ago Status.php 3 years ago
Help.php
71 lines
1 <?php
2 # Generated by the protocol buffer compiler. DO NOT EDIT!
3 # source: google/rpc/error_details.proto
4
5 namespace Google\Rpc;
6
7 use Google\Protobuf\Internal\GPBType;
8 use Google\Protobuf\Internal\RepeatedField;
9 use Google\Protobuf\Internal\GPBUtil;
10
11 /**
12 * Provides links to documentation or for performing an out of band action.
13 * For example, if a quota check failed with an error indicating the calling
14 * project hasn't enabled the accessed service, this can contain a URL pointing
15 * directly to the right place in the developer console to flip the bit.
16 *
17 * Generated from protobuf message <code>google.rpc.Help</code>
18 */
19 class Help extends \Google\Protobuf\Internal\Message
20 {
21 /**
22 * URL(s) pointing to additional information on handling the current error.
23 *
24 * Generated from protobuf field <code>repeated .google.rpc.Help.Link links = 1;</code>
25 */
26 private $links;
27
28 /**
29 * Constructor.
30 *
31 * @param array $data {
32 * Optional. Data for populating the Message object.
33 *
34 * @type \Google\Rpc\Help\Link[]|\Google\Protobuf\Internal\RepeatedField $links
35 * URL(s) pointing to additional information on handling the current error.
36 * }
37 */
38 public function __construct($data = NULL) {
39 \GPBMetadata\Google\Rpc\ErrorDetails::initOnce();
40 parent::__construct($data);
41 }
42
43 /**
44 * URL(s) pointing to additional information on handling the current error.
45 *
46 * Generated from protobuf field <code>repeated .google.rpc.Help.Link links = 1;</code>
47 * @return \Google\Protobuf\Internal\RepeatedField
48 */
49 public function getLinks()
50 {
51 return $this->links;
52 }
53
54 /**
55 * URL(s) pointing to additional information on handling the current error.
56 *
57 * Generated from protobuf field <code>repeated .google.rpc.Help.Link links = 1;</code>
58 * @param \Google\Rpc\Help\Link[]|\Google\Protobuf\Internal\RepeatedField $var
59 * @return $this
60 */
61 public function setLinks($var)
62 {
63 $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Rpc\Help\Link::class);
64 $this->links = $arr;
65
66 return $this;
67 }
68
69 }
70
71