Listing Response

class moco_wrapper.util.response.ListingResponse(response)

Class for handling http responses where the response body is a json list

data

Returns the list of object the response contains

See also

items

items

Get the list of objects the response contains

m = Moco()
project_list = m.Project.getlist()

for item in project_list.items:
    print(item)

See also

data

response

http response object