Флаг, определяющий, будет ли Gmail автоматически отвечать на сообщения.
responseSubject
string
Необязательный текст, добавляемый в начало темы ответов об отпуске. Чтобы включить автоответы, тема ответа или тело ответа должны быть непустыми.
responseBodyPlainText
string
Тело ответа в текстовом формате. Если указаны оба параметра: responseBodyPlainText и responseBodyHtml , будет использоваться responseBodyHtml .
responseBodyHtml
string
Тело ответа в формате HTML. Gmail очистит HTML перед его сохранением. Если указаны оба параметра: responseBodyPlainText и responseBodyHtml , будет использоваться responseBodyHtml .
restrictToContacts
boolean
Флаг, определяющий, отправляются ли ответы получателям, которых нет в списке контактов пользователя.
restrictToDomain
boolean
Флаг, определяющий, отправляются ли ответы получателям, находящимся за пределами домена пользователя. Эта функция доступна только для пользователей Google Workspace.
Необязательное время начала отправки автоответов (период мс). Если это указано, Gmail будет автоматически отвечать только на сообщения, полученные после времени начала. Если указаны и startTime , и endTime , startTime должен предшествовать endTime .
Необязательное время окончания отправки автоответов (период мс). Если это указано, Gmail будет автоматически отвечать только на сообщения, полученные до времени окончания. Если указаны и startTime , и endTime , startTime должен предшествовать endTime .
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2025-07-25 UTC."],[],[],null,["# VacationSettings\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nVacation auto-reply settings for an account. These settings correspond to the [\"Vacation responder\"](https://support.google.com/mail/answer/25922) feature in the web interface.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"enableAutoReply\": boolean, \"responseSubject\": string, \"responseBodyPlainText\": string, \"responseBodyHtml\": string, \"restrictToContacts\": boolean, \"restrictToDomain\": boolean, \"startTime\": string, \"endTime\": string } ``` |\n\n| Fields ||\n|-------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `enableAutoReply` | `boolean` Flag that controls whether Gmail automatically replies to messages. |\n| `responseSubject` | `string` Optional text to prepend to the subject line in vacation responses. In order to enable auto-replies, either the response subject or the response body must be nonempty. |\n| `responseBodyPlainText` | `string` Response body in plain text format. If both `responseBodyPlainText` and `responseBodyHtml` are specified, `responseBodyHtml` will be used. |\n| `responseBodyHtml` | `string` Response body in HTML format. Gmail will sanitize the HTML before storing it. If both `responseBodyPlainText` and `responseBodyHtml` are specified, `responseBodyHtml` will be used. |\n| `restrictToContacts` | `boolean` Flag that determines whether responses are sent to recipients who are not in the user's list of contacts. |\n| `restrictToDomain` | `boolean` Flag that determines whether responses are sent to recipients who are outside of the user's domain. This feature is only available for Google Workspace users. |\n| `startTime` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` An optional start time for sending auto-replies (epoch ms). When this is specified, Gmail will automatically reply only to messages that it receives after the start time. If both `startTime` and `endTime` are specified, `startTime` must precede `endTime`. |\n| `endTime` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` An optional end time for sending auto-replies (epoch ms). When this is specified, Gmail will automatically reply only to messages that it receives before the end time. If both `startTime` and `endTime` are specified, `startTime` must precede `endTime`. |"]]