OBJECT

SnoozedDirectory

Description

A directory that has been snoozed.

link GraphQL Schema definition

  • type SnoozedDirectory {
  • # The directory path.
  • directory: String!
  • # The type of false positive.
  • falsePositiveType: AnomalyFalsePositiveType!
  • # The account user that snoozed the directory.
  • userAccount: String!
  • # The status of the snooze.
  • status: SnoozeStatus!
  • # The expiration date of the snooze.
  • expirationDate: DateTime
  • # The date the snooze was created.
  • createdDate: DateTime
  • # The reason for snoozing the directory (if falsePositiveType equals to OTHER).
  • otherReason: String!
  • }