OBJECT
TimeframeEntity
link GraphQL Schema definition
- type TimeframeEntity {
- # 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
- # Lead this step-time record belongs to. Set when lead_oppty_id resolves to a
- # Lead.
- : LeadEntity
- # Opportunity this step-time record belongs to. Set when lead_oppty_id resolves to
- # an Opportunity.
- : OpportunityEntity
- # Pipeline step the lead/opportunity entered.
- : StepEntity
- # Id of the lead or opportunity the timeframe belongs to.
- : ID!
- # Id of the pipeline step.
- : ID!
- # Number of seconds the record spent in the step (cumulative across re-entries).
- : Int!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }