aries_cloudagent.protocols.trustping.v1_0.messages package

Submodules

aries_cloudagent.protocols.trustping.v1_0.messages.ping module

Represents a trust ping message.

class aries_cloudagent.protocols.trustping.v1_0.messages.ping.Ping(*, response_requested: bool = True, comment: Optional[str] = None, **kwargs)[source]

Bases: AgentMessage

Class representing a trustping message.

class Meta[source]

Bases: object

Ping metadata.

handler_class = 'aries_cloudagent.protocols.trustping.v1_0.handlers.ping_handler.PingHandler'
message_type = 'trust_ping/1.0/ping'
schema_class = 'PingSchema'
class aries_cloudagent.protocols.trustping.v1_0.messages.ping.PingSchema(*args: Any, **kwargs: Any)[source]

Bases: AgentMessageSchema

Schema for Ping class.

class Meta[source]

Bases: object

PingSchema metadata.

model_class

alias of Ping

aries_cloudagent.protocols.trustping.v1_0.messages.ping_response module

Represents an response to a trust ping message.

class aries_cloudagent.protocols.trustping.v1_0.messages.ping_response.PingResponse(*, comment: Optional[str] = None, **kwargs)[source]

Bases: AgentMessage

Class representing a ping response.

class Meta[source]

Bases: object

PingResponse metadata.

handler_class = 'aries_cloudagent.protocols.trustping.v1_0.handlers.ping_response_handler.PingResponseHandler'
message_type = 'trust_ping/1.0/ping_response'
schema_class = 'PingResponseSchema'
class aries_cloudagent.protocols.trustping.v1_0.messages.ping_response.PingResponseSchema(*args: Any, **kwargs: Any)[source]

Bases: AgentMessageSchema

PingResponse schema.

class Meta[source]

Bases: object

PingResponseSchema metadata.

model_class

alias of PingResponse