/var/www/flurhymez/vendor/google/apiclient-services/src/Gmail/Resource
NameSizeModeActions
Users.php26940644editdlrm
UsersDrafts.php51730644editdlrm
UsersHistory.php29850644editdlrm
UsersLabels.php45180644editdlrm
UsersMessages.php102170644editdlrm
UsersMessagesAttachments.php18130644editdlrm
UsersSettings.php72980644editdlrm
UsersSettingsDelegates.php49590644editdlrm
UsersSettingsFilters.php32940644editdlrm
UsersSettingsForwardingAddresses.php42170644editdlrm
UsersSettingsSendAs.php66690644editdlrm
UsersSettingsSendAsSmimeInfo.php49710644editdlrm
UsersThreads.php56130644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Gmail/Resource/UsersMessagesAttachments.php (1813B)
* $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');