OBJECT

AddAssociateType

Representation of a newly created associate for an accountant

link GraphQL Schema definition

  • type AddAssociateType {
  • # 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]
  • # The plain generated password for an added associate
  • plainPassword: String
  • }