canQuery property

List<String> canQuery

possible queries using parameters like ?wherekey=value or ?wheregt|lt=value

  • created_at: (URLParameter), query on a specific created_at, example: ?wherecreated_at=2000-01-01T12:00:00Z
  • from_address: (URLParameter), query on a specific from_address, example: ?wherefrom_address=string
  • message_count: (URLParameter), query on a specific message_count, example: ?wheremessage_count=1
  • message_type: (URLParameter), query on a specific message_type, example: ?wheremessage_type=string
  • subject: (URLParameter), query on a specific subject, example: ?wheresubject=string
  • system_message: (URLParameter), query on a specific system_message, example: ?wheresystem_message=true
  • uuid: (URLParameter), query on a specific uuid, example: ?whereuuid=string

Implementation

static List<String> get canQuery => [
      'created_at',
      'from_address',
      'message_count',
      'message_type',
      'subject',
      'system_message',
      'uuid'
    ];