0

It seems that the following code should return a qual which contain a qualification_type_id attribute. Since lots of functions in Boto require qualification_type_id as a parameter. It shows that the qualification id returns when you create a qualification type. But it does not when I use dir(qual) to check. I just want to know how to get the qualification_type_id

qualification = Qualifications()
qual = mtc.create_qualification_type(name = 'q', 
                                     description='qualification',
                                     status = 'Active')
print(dir(qual))
Paul
  • 10,381
  • 13
  • 48
  • 86
slhttc
  • 11
  • 4

1 Answers1

0

Have you tried with this:

qual[0].QualificationTypeId

Regards

Mauro Rocco
  • 4,980
  • 1
  • 26
  • 40