OBJECT

EmailSequenceActivityLogLineEntity

link GraphQL Schema definition

  • type EmailSequenceActivityLogLineEntity {
  • # Human-readable rendering of the log line, prefixed with the line's timestamp and
  • # (when applicable) the parent record id.
  • formattedText: String!
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Activity log this line belongs to.
  • emailSequenceActivityLog: EmailSequenceActivityLogEntity
  • # Id of the activity log.
  • emailSequenceActivityLogId: ID!
  • # True when the line is shown in the activity log UI; false for internal-only
  • # lines.
  • isVisible: Boolean
  • # Position of the line within its log run.
  • sortOrder: Int!
  • # Outcome of the step the line represents (e.g. Ok, Error, Skipped).
  • status: ProcessStatusEnum
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }