* $gmailService = new Google\Service\Gmail(...); * $attachments = $gmailService->attachments; * */ class UsersMessagesAttachments extends \Google\Service\Resource { /** * Gets the specified message attachment. (attachments.get) * * @param string $userId The user's email address. The special value `me` can be * used to indicate the authenticated user. * @param string $messageId The ID of the message containing the attachment. * @param string $id The ID of the attachment. * @param array $optParams Optional parameters. * @return MessagePartBody */ public function get($userId, $messageId, $id, $optParams = []) { $params = ['userId' => $userId, 'messageId' => $messageId, 'id' => $id]; $params = array_merge($params, $optParams); return $this->call('get', [$params], MessagePartBody::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UsersMessagesAttachments::class, 'Google_Service_Gmail_Resource_UsersMessagesAttachments');