context = $context; } /** * @return string */ public function getContext() { return $this->context; } /** * Localized free text that describes the dates represented by the card. * Currently, the card will only represent a single day. * * @param string $date */ public function setDate($date) { $this->date = $date; } /** * @return string */ public function getDate() { return $this->date; } /** * Represents restrictions applied to the events requested in the user's * query. * * Accepted values: NONE, NEXT_MEETING * * @param self::EVENTS_RESTRICT_* $eventsRestrict */ public function setEventsRestrict($eventsRestrict) { $this->eventsRestrict = $eventsRestrict; } /** * @return self::EVENTS_RESTRICT_* */ public function getEventsRestrict() { return $this->eventsRestrict; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EnterpriseTopazSidekickAgendaGroupCardProtoContext::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickAgendaGroupCardProtoContext');