setOwnerId($ownerId); } /** * Set the Owner of the document. * * @since 16.0.0 */ public function setOwnerId(string $ownerId): IDocumentAccess { $this->ownerId = $ownerId; return $this; } /** * Get the Owner of the document. * * @since 16.0.0 */ public function getOwnerId(): string { return $this->ownerId; } /** * Set the viewer of the document. * * @since 16.0.0 */ public function setViewerId(string $viewerId): IDocumentAccess { $this->viewerId = $viewerId; return $this; } /** * Get the viewer of the document. * * @since 16.0.0 */ public function getViewerId(): string { return $this->viewerId; } /** * Set the list of users that have read access to the document. * * @since 16.0.0 */ public function setUsers(array $users): IDocumentAccess { $this->users = $users; return $this; } /** * Add an entry to the list of users that have read access to the document. * * @since 16.0.0 */ public function addUser(string $user): IDocumentAccess { $this->users[] = $user; return $this; } /** * Add multiple entries to the list of users that have read access to the * document. * * @since 16.0.0 */ public function addUsers($users): IDocumentAccess { $this->users = array_merge($this->users, $users); return $this; } /** * Get the complete list of users that have read access to the document. * * @since 16.0.0 */ public function getUsers(): array { return $this->users; } /** * Set the list of groups that have read access to the document. * * @since 16.0.0 */ public function setGroups(array $groups): IDocumentAccess { $this->groups = $groups; return $this; } /** * Add an entry to the list of groups that have read access to the document. * * @since 16.0.0 */ public function addGroup(string $group): IDocumentAccess { $this->groups[] = $group; return $this; } /** * Add multiple entries to the list of groups that have read access to the * document. * * @since 16.0.0 */ public function addGroups(array $groups): IDocumentAccess { $this->groups = array_merge($this->groups, $groups); return $this; } /** * Get the complete list of groups that have read access to the document. * * @since 16.0.0 */ public function getGroups(): array { return $this->groups; } /** * Set the list of circles that have read access to the document. * * @since 16.0.0 */ public function setCircles(array $circles): IDocumentAccess { $this->circles = $circles; return $this; } /** * Add an entry to the list of circles that have read access to the document. * * @since 16.0.0 */ public function addCircle(string $circle): IDocumentAccess { $this->circles[] = $circle; return $this; } /** * Add multiple entries to the list of groups that have read access to the * document. * * @since 16.0.0 */ public function addCircles(array $circles): IDocumentAccess { $this->circles = array_merge($this->circles, $circles); return $this; } /** * Get the complete list of circles that have read access to the document. * * @since 16.0.0 */ public function getCircles(): array { return $this->circles; } /** * Set the list of links that have read access to the document. * * @since 16.0.0 */ public function setLinks(array $links): IDocumentAccess { $this->links = $links; return $this; } /** * Get the list of links that have read access to the document. * * @since 16.0.0 */ public function getLinks(): array { return $this->links; } /** * @since 16.0.0 */ public function jsonSerialize(): array { return [ 'ownerId' => $this->getOwnerId(), 'viewerId' => $this->getViewerId(), 'users' => $this->getUsers(), 'groups' => $this->getGroups(), 'circles' => $this->getCircles(), 'links' => $this->getLinks() ]; } } id='n51' href='#n51'>51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180