"_type", ]; /** * @var string */ public $type; protected $predicateDataType = ''; /** * @var string */ public $predicateType; protected $subjectType = Subject::class; protected $subjectDataType = 'array'; /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param SbomReferenceIntotoPredicate */ public function setPredicate(SbomReferenceIntotoPredicate $predicate) { $this->predicate = $predicate; } /** * @return SbomReferenceIntotoPredicate */ public function getPredicate() { return $this->predicate; } /** * @param string */ public function setPredicateType($predicateType) { $this->predicateType = $predicateType; } /** * @return string */ public function getPredicateType() { return $this->predicateType; } /** * @param Subject[] */ public function setSubject($subject) { $this->subject = $subject; } /** * @return Subject[] */ public function getSubject() { return $this->subject; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SbomReferenceIntotoPayload::class, 'Google_Service_OnDemandScanning_SbomReferenceIntotoPayload');