ruckus / quickbooks-ruby

Quickbooks Online REST API V3 - Ruby
MIT License
374 stars 302 forks source link

Missing IsProject attribute on Customer #546

Closed jocekuswanto closed 3 years ago

jocekuswanto commented 3 years ago

I'm working on adding a project integration with QBO, however I noticed it's missing IsProject from the Customer model. From the QBO API docs there is a flag to indicate if a customer is a project and I'm able to query it through Postman (only on a production QBO company).

Screen Shot 2021-03-08 at 5 20 37 PM

Is there a reason why it's currently not on Customer or can I open a PR to add it?

ruckus commented 3 years ago

Thanks for the heads-up, I just pushed 1.0.16 with support for Customer#IsProject.

Accessible via the isproject? inquiry method.

jocekuswanto commented 3 years ago

Thank you!