Appointment type feed

AppointmentTypeFeed Definition

message AppointmentTypeFeed {
  repeated AppointmentType data = 1;
}

AppointmentType Definition

// 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.
message AppointmentType {
  // 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)
  string appointment_type_id = 1;

  // The name of the appointment type to be displayed. (required)
  Text name = 2;

  // ...
}

Text Definition

// A possibly-localized text payload. Some Text fields may contain marked-up
// content.
message Text {
  // Required. Text value in an unknown locale, which will be displayed if
  // `localized_value` for the user locale is empty or missing. The locale for
  // this value may depend on the partner or service provider, and it should not
  // be assumed to be any specific language.
  string value = 1;

  // Per-locale text values. Required.
  repeated LocalizedString localized_value = 2;
}