Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

sky-sharma
Copy link
Collaborator

This branch implements the FieldMask class. Previously this would have worked:

...
maskItems = [ "id", "credentials", "lastEventTime"]
request = ListDevicesRequest(parent=parent, fieldMask=','.join(maskItems))
...

With this branch the above will work PLUS the following (requested by Alfonso Guerrero):

...
maskItems = [ "id", "credentials", "lastEventTime"]
request = ListDevicesRequest(parent=parent, fieldMask=FieldMask(paths=maskItems))
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants