collection property

String collection
getter/setter pair

When uploading to the Firebase Database using the FirebaseDatabaseDataManager, collection hold the name of the collection to store json objects. May contain sub-collections separated with /.

JSON objects will be stored in collections named <study_id>/<device_id> relative to this path. For example, if collection = "carp_data", study_id = "1234" and device_id = "987234", the data will be stored as documents in "carp_data/1234/987234/".

Implementation

String collection;