OBJECT

ChatSetting

link GraphQL Schema definition

  • type ChatSetting {
  • auto_welcome_text: String
  • content: String
  • # end of scheduled autoreply period
  • end_date: String
  • hide_close_confirmation: Boolean
  • hide_org_chat_confirmation: Boolean
  • id: ID!
  • is_active: Boolean
  • # true if within recurring messaging period
  • is_recurring_active: Boolean
  • receive_notifications: Boolean
  • # tells whether or not the recurring messages should be all day or for a time
  • # range
  • recurring_all_day: Boolean
  • # content for recurring autoreplies
  • recurring_content: String
  • # Front-end friendly version of recurring days
  • recurring_days_data: RecurringDaysData
  • # end of time range for recurring messages
  • recurring_end_time: String
  • recurring_friday: String
  • recurring_monday: String
  • recurring_saturday: String
  • # start of time range for recurring messages
  • recurring_start_time: String
  • # each recurring day is either nil, all_day, or a string representation of a time
  • # range
  • recurring_sunday: String
  • recurring_thursday: String
  • recurring_tuesday: String
  • # Indicates whether or not recurring messaging has been set up
  • recurring_turned_on: Boolean
  • recurring_wednesday: String
  • send_auto_welcome: Boolean
  • # beginning of scheduled autoreply period
  • start_date: String
  • # setting owner
  • user_id: ID
  • }