OBJECT
OnlineFormTypeEmailRelationEntity
link GraphQL Schema definition
- type OnlineFormTypeEmailRelationEntity {
- # 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
- # Account the email recipient belongs to, when applicable.
- : AccountEntity
- # Contact the email was addressed to, when applicable.
- : ContactEntity
- # Custom entity record the form was sent on, when applicable.
- : CustomEntityEntity
- # Email message used to deliver the form link to the recipient.
- : EmailEntity
- # Lead the form was sent on. Set when lead_oppty_id resolves to a Lead.
- : LeadEntity
- # Opportunity the form was sent on. Set when lead_oppty_id resolves to an
- # Opportunity.
- : OpportunityEntity
- # Online form being shared with the recipient via email.
- : OnlineFormTypeEntity
- # Quote the form was sent on, when applicable.
- : QuoteEntity
- # Id of the linked account.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked custom entity record.
- : ID
- # Id of the email message.
- : ID!
- # Id of the linked lead or opportunity, or empty when not linked.
- : ID
- # Id of the online form.
- : ID!
- # Id of the linked quote.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }