Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.13 KB

DomainLaunchExportJobRequestV1.md

File metadata and controls

26 lines (20 loc) · 1.13 KB

Falcon::DomainLaunchExportJobRequestV1

Properties

Name Type Description Notes
entity String The entity type. This can be one of: [`notification-exposed-data-record`, `historical-search-exposed-data-record`]
export_type String The file type of the export. This can be one of: [`json`, `csv`]
filter String FQL query to filter entities by. Possible filter properties depend on the entity type.
human_readable Boolean If set to true (default), the field names in the exported file will resemble the table header in the UI (e.g. "Hash type"), otherwise the API level field names will be used (e.g. "hash_type")
sort String Possible order by fields: created_timestamp, last_updated_timestamp. Ex: 'last_updated_timestamp desc'

Example

require 'crimson-falcon'

instance = Falcon::DomainLaunchExportJobRequestV1.new(
  entity: null,
  export_type: null,
  filter: null,
  human_readable: null,
  sort: null
)