I would like to export my all user events. Is there a way to retrieve all user events data with API ? I can retrieve products: list_products:
from google.cloud import retail_v2
def sample_list_products():
# Create a client
client = retail_v2.ProductServiceClient()
# Initialize request argument(s)
request = retail_v2.ListProductsRequest(
parent="parent_value",
)
# Make the request
page_result = client.list_products(request=request)
# Handle the response
for response in page_result:
print(response)