GoodMem
ReferenceClient SDKsPython SDKModels

PingEndpointInfo Model

PingEndpointInfo Model documentation for Python SDK

Resolved endpoint metadata for ping responses

Properties

NameTypeDescriptionNotes
target_typePingTargetType
target_idstrTarget resource ID (UUID)
resolved_endpointstrFully resolved endpoint URL used for the probe
providerstrProvider name backing the resource
model_identifierstrProvider-specific model identifier

Example

from goodmem_client.models.ping_endpoint_info import PingEndpointInfo

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

# convert the object into a dict
ping_endpoint_info_dict = ping_endpoint_info_instance.to_dict()
# create an instance of PingEndpointInfo from a dict
ping_endpoint_info_from_dict = PingEndpointInfo.from_dict(ping_endpoint_info_dict)

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

On this page