When initiating a new Systemuserputpost object following the documentation: https://github.com/TheJumpCloud/jcapi-ruby/blob/master/jcapiv1/docs/Systemuserputpost.md, some of the attributes does not work as advertised. (I did not test all of them) # Current behavior ```ruby JCAPIv1::Systemuserputpost.new employeeIdentifier: '12343', employeeType: "student" => #<JCAPIv1::Systemuserputpost:0x00007fd7237d7628 @employee_identifier="12343", @employee_type="student"> ``` # Expected behavior ```ruby JCAPIv1::Systemuserputpost.new employee_identifier: '12343', employee_type: "student' => #<JCAPIv1::Systemuserputpost:0x00007fd726baaf18 @employee_identifier="12343" @employee_type="student"> ```
When initiating a new Systemuserputpost object following the documentation: https://github.com/TheJumpCloud/jcapi-ruby/blob/master/jcapiv1/docs/Systemuserputpost.md,
some of the attributes does not work as advertised. (I did not test all of them)
Current behavior
Expected behavior