model.messages.gradido.SignatureMap */ class SignatureMap extends \Google\Protobuf\Internal\Message { /** * Each signature pair corresponds to a unique Key required to sign the transaction. * * Generated from protobuf field repeated .model.messages.gradido.SignaturePair sigPair = 1; */ private $sigPair; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Model\Messages\Gradido\SignaturePair[]|\Google\Protobuf\Internal\RepeatedField $sigPair * Each signature pair corresponds to a unique Key required to sign the transaction. * } */ public function __construct($data = NULL) { \GPBMetadata\BasicTypes::initOnce(); parent::__construct($data); } /** * Each signature pair corresponds to a unique Key required to sign the transaction. * * Generated from protobuf field repeated .model.messages.gradido.SignaturePair sigPair = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getSigPair() { return $this->sigPair; } /** * Each signature pair corresponds to a unique Key required to sign the transaction. * * Generated from protobuf field repeated .model.messages.gradido.SignaturePair sigPair = 1; * @param \Model\Messages\Gradido\SignaturePair[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setSigPair($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Model\Messages\Gradido\SignaturePair::class); $this->sigPair = $arr; return $this; } }