OBJECT

EmailSequenceEnrolledEntity

link GraphQL Schema definition

  • type EmailSequenceEnrolledEntity {
  • # 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
  • account: AccountEntity
  • actor: ClientEntity
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • application: ApplicationEntity
  • contact: ContactEntity
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • emailSequenceActivityLog: EmailSequenceActivityLogEntity
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • emailSequence: EmailSequenceEntity
  • lead: LeadEntity
  • oppty: OpportunityEntity
  • project: ProjectEntity
  • # Relation to single entity instance.
  • accountId: ID
  • # Relation to single entity instance.
  • actorId: ID
  • # Relation to single entity instance.
  • applicationId: ID!
  • # Relation to single entity instance.
  • contactId: ID
  • # Relation to single entity instance.
  • emailSequenceActivityLogId: ID!
  • # Relation to single entity instance.
  • emailSequenceId: ID!
  • # Field whose values are strictly defined with an enumeration of values.
  • endReason: EmailSequenceEndReasonEnum
  • # Datetime information.
  • endTime: DateTime
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • entityId: ID!
  • # Field whose values are strictly defined with an enumeration of values.
  • entityType: BaseEntityTypeEnum!
  • # Boolean value.
  • excludedFromStats: Boolean
  • # Relation to single entity instance.
  • leadId: ID
  • # Relation to single entity instance.
  • opptyId: ID
  • # Relation to single entity instance.
  • projectId: ID
  • # Datetime information.
  • startTime: DateTime!
  • # Whole natural number.
  • stepCount: Int!
  • name: String
  • address: String
  • stepIndex: Int
  • status: ProcessStatusEnum
  • entityName: EntityNameEnum!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }