Moibe commited on
Commit
2184e67
·
1 Parent(s): d8f7911

Print all metadata

Browse files
Files changed (1) hide show
  1. funciones.py +5 -0
funciones.py CHANGED
@@ -29,6 +29,11 @@ async def procesa_evento(request: Request, stripe_signature: str = Header(None))
29
  print("Voy a imprimir el event type:")
30
  print(event_type)
31
  print("Sucedido a las: ", herramientas.imprimeTime())
 
 
 
 
 
32
  gaCliente = event_data['metadata'].get('gaCliente', None)
33
  print("Gaclient es: ", gaCliente)
34
 
 
29
  print("Voy a imprimir el event type:")
30
  print(event_type)
31
  print("Sucedido a las: ", herramientas.imprimeTime())
32
+
33
+ # Imprimir todos los metadatos
34
+ print("Metadatos completos:")
35
+ print(event_data['metadata'])
36
+
37
  gaCliente = event_data['metadata'].get('gaCliente', None)
38
  print("Gaclient es: ", gaCliente)
39