Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Tanımlar
AppointmentTypeFeed Tanımı
message AppointmentTypeFeed {
repeated AppointmentType data = 1;
}
AppointmentType Tanımı
// Info about an appointment type which is supported on the partner's// platform. E.g. "New patient", "Followup" An AppointmentTypeFeed should be a// list of this message.messageAppointmentType{// An opaque string generated by the partner that identifies an appointment// type. Must be unique across all appointment types. Strongly recommended to// only include URL-safe characters. (required)stringappointment_type_id=1;// The name of the appointment type to be displayed. (required)Textname=2;// ...}
// Instance of a string in one locale.messageLocalizedString{// IETF BCP 47 language code, such as "en", "mas", "zh-Hant", "de-CH-1901".// See http://www.w3.org/International/articles/language-tags/.// Only "en-US" is currently supported. All other values will be ignored.stringlocale=1;// Message in the locale above (UTF-8).stringvalue=2;}
Randevu türü feed örnekleri
Randevu Türü Feed'i
{"data":[{"appointment_type_id":"appointment_type_00001","name":{"value":"New Patient","localized_value":[{"locale":"en","value":"New Patient"}]}},{"appointment_type_id":"appointment_type_00002","name":{"value":"Follow Up","localized_value":[{"locale":"en","value":"Follow Up"}]}},{"appointment_type_id":"appointment_type_00003","name":{"value":"Sick/Acute Problem - New Patient","localized_value":[{"locale":"en","value":"Sick/Acute Problem - New Patient"}]}}]}
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-11-26 UTC."],[[["AppointmentTypeFeed is a list of AppointmentType messages, defining the types of appointments supported by a partner."],["Each AppointmentType is uniquely identified by `appointment_type_id` and has a display `name`."],["The `name` field can be localized using the `localized_value` field within the `Text` message, supporting different languages."],["While the feed spec is defined using protocol buffers, it is recommended to upload feeds in JSON format, with examples provided."],["A descriptor file accompanies the feed, containing metadata such as generation timestamp and data file names."]]],[]]