GoodMem
ReferenceClient SDKsPython SDKModels

PingEvent Model

PingEvent Model documentation for Python SDK

Streaming event from a ping session

Properties

NameTypeDescriptionNotes
resultPingResult[optional]
summaryPingSummary[optional]
noticePingNotice[optional]

Example

from goodmem_client.models.ping_event import PingEvent

# TODO update the JSON string below
json = "{}"
# create an instance of PingEvent from a JSON string
ping_event_instance = PingEvent.from_json(json)
# print the JSON string representation of the object
print(PingEvent.to_json())

# convert the object into a dict
ping_event_dict = ping_event_instance.to_dict()
# create an instance of PingEvent from a dict
ping_event_from_dict = PingEvent.from_dict(ping_event_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page