GoodMem
ReferenceClient SDKsPython SDKModels

PingNotice Model

PingNotice Model documentation for Python SDK

Non-fatal notice emitted during a ping session

Properties

NameTypeDescriptionNotes
codestrMachine-readable notice identifier
messagestrHuman-readable notice message
detailsDict[str, str]Additional contextual details[optional]

Example

from goodmem_client.models.ping_notice import PingNotice

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

# convert the object into a dict
ping_notice_dict = ping_notice_instance.to_dict()
# create an instance of PingNotice from a dict
ping_notice_from_dict = PingNotice.from_dict(ping_notice_dict)

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

On this page