Returns the number of members in the object. https://arduinojson.org/v7/api/jsonobjectconst/size/
| 51 | // Returns the number of members in the object. |
| 52 | // https://arduinojson.org/v7/api/jsonobjectconst/size/ |
| 53 | size_t size() const { |
| 54 | return data_ ? data_->size(resources_) : 0; |
| 55 | } |
| 56 | |
| 57 | // Returns an iterator to the first key-value pair of the object. |
| 58 | // https://arduinojson.org/v7/api/jsonobjectconst/begin/ |