// Information about an Action which could be performed.
message Action {
// Deprecated fields not to be reused.
reserved 1;
oneof action_info {
AppointmentInfo appointment_info = 2;
}
}
AppointmentInfo Definition
message AppointmentInfo {
// Deep link for appointment action.
string url = 1;
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["Action feeds, outlining available actions like appointments, are defined using protocol buffers but should be uploaded in JSON format."],["Each action feed can contain multiple `ActionDetail` entries, each associated with an entity ID and a list of possible actions."],["An `Action` currently supports `AppointmentInfo`, providing a deep link (`url`) to initiate an appointment."],["Sample JSON feeds and descriptor files illustrate the structure and expected data for action feed uploads."]]],[]]