// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type MoneroP2PPingResponse struct {
	Payload        *MoneroP2PPayload        `json:"payload,omitempty"`
	ResponseHeader *MoneroP2PResponseHeader `json:"response_header,omitempty"`
}

func (o *MoneroP2PPingResponse) GetPayload() *MoneroP2PPayload {
	if o == nil {
		return nil
	}
	return o.Payload
}

func (o *MoneroP2PPingResponse) GetResponseHeader() *MoneroP2PResponseHeader {
	if o == nil {
		return nil
	}
	return o.ResponseHeader
}
