Skip to content

AppointmentBookingWarning

Warnings to show provider before they book

Fields

category · String · Category of warning (e.g no credits)
potential_issue_ids · [String!] · Array of IDs of objects causing booking issues for a given category
potential_issues · [String!] · Array of potential booking issues for a given category
subtitle · String · Subtitle describing the category

Used By

Definition

"""
Warnings to show provider before they book
"""
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
}