OBJECT

AppointmentBookingWarning

Warnings to show provider before they book

link GraphQL Schema definition

  • type AppointmentBookingWarning {
  • # Category of warning (e.g no credits)
  • category: String
  • # Array of IDs of objects causing booking issues for a given category
  • potential_issue_ids: [String!]
  • # Array of potential booking issues for a given category
  • potential_issues: [String!]
  • # Subtitle describing the category
  • subtitle: String
  • }