* $gmailService = new Google\Service\Gmail(...); * $attachments = $gmailService->users_messages_attachments; * */ class UsersMessagesAttachments extends \WPMailSMTP\Vendor\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], \WPMailSMTP\Vendor\Google\Service\Gmail\MessagePartBody::class); } } // Adding a class alias for backwards compatibility with the previous class name. \class_alias(\WPMailSMTP\Vendor\Google\Service\Gmail\Resource\UsersMessagesAttachments::class, 'WPMailSMTP\\Vendor\\Google_Service_Gmail_Resource_UsersMessagesAttachments');