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.
- : 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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Activity log this line belongs to.
- : EmailSequenceActivityLogEntity
- # Id of the activity log.
- : ID!
- # True when the line is shown in the activity log UI; false for internal-only
- # lines.
- : Boolean
- # Position of the line within its log run.
- : Int!
- # Outcome of the step the line represents (e.g. Ok, Error, Skipped).
- : ProcessStatusEnum
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }