Hi, I'm trying to query and edit my feature layer collection's alternative titles and layer names but can't access either property. This is the code I'm testing with:
groups = gis.groups.search()
for g in groups: # looping through groups
content = g.content()
print(content) # printing list of each group's content
for c in content:
print(c) # printing each group's content separately as an item, has type Feature Layer Collection
print(c.properties) # trying to print content's properties for viewingFrom the API's documentation, I wanted to use the ``.properties`` command to access the feature layer collection's properties but this line in my code outputted None.
Is ``.properties`` the correct command to use and if not, could someone point me in the right direction? For each of the Feature Layer Collections that I'm looping through in the second loop, I'm trying to access and edit the alternative title and layer name.
Thanks!