OBJECT

TraineeRecyclageInfo

Recyclage information let you know when your trainee received certification, if it needs to be renew and when does it need to.

link GraphQL Schema definition

  • type TraineeRecyclageInfo {
  • # When your trainee got certified.
  • certificationDate: Date
  • # How long does its certification last.
  • certificationDuration: Int
  • # Require Admin+. Null if no email was sent to the trainee to renew it's
  • # certification.
  • emailSentAt: NaiveDateTime
  • # True if the certification is renewable.
  • recyclable: Boolean
  • # Delay before which the trainee should be contacted before its certification's
  • # renew date.
  • recyclableTime: Int
  • recyclableTimeUnit: String
  • }