Returns the number of members in the object. https://arduinojson.org/v7/api/jsonobject/size/
| 61 | // Returns the number of members in the object. |
| 62 | // https://arduinojson.org/v7/api/jsonobject/size/ |
| 63 | size_t size() const { |
| 64 | return data_ ? data_->size(resources_) : 0; |
| 65 | } |
| 66 | |
| 67 | // Returns an iterator to the first key-value pair of the object. |
| 68 | // https://arduinojson.org/v7/api/jsonobject/begin/ |