INTERFACE

ReportBoxInterface

link GraphQL Schema definition

  • interface ReportBoxInterface {
  • # Unique identifier of the box within the report structure.
  • id: ID!
  • # A field used for calculation, this field is applied only if box entity is
  • # Opportunty or LeadOppty
  • calculationFieldId: ID
  • # Entity type whose records this box reports on, such as Account, Lead or
  • # Opportunity.
  • entityType: EntityNameEnum!
  • # API name of the entity for this box; set for custom entities to identify which
  • # one is used.
  • entityApiName: String
  • # List of possible entity subtypes of entity_type, if entity type is abstract you
  • # can supply with entity_types of all children of abstract entity
  • entitySubtypes: [EntitySubtypeItem!]
  • }