OBJECT

AssociateType

Representation of an associate for an accountant

link GraphQL Schema definition

  • type AssociateType {
  • # The generated id
  • id: String
  • # The first name of the associate
  • firstName: String
  • # The last name of the associate
  • lastName: String
  • # The email address of the associate
  • email: String
  • # The language of the associate
  • language: AssociateLanguageEnum
  • # The associate type
  • type: AssociateTypeEnum
  • # Whether the associate is able to login to the application
  • active: Boolean
  • # Association groups in which the associate is a member
  • associateGroups: [AssociateGroup]
  • }