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

package components

type KubernetesEndpointSubsetEndpointAddress struct {
	Hostname *string `json:"hostname,omitempty"`
	IP       *string `json:"ip,omitempty"`
	NodeName *string `json:"node_name,omitempty"`
}

func (o *KubernetesEndpointSubsetEndpointAddress) GetHostname() *string {
	if o == nil {
		return nil
	}
	return o.Hostname
}

func (o *KubernetesEndpointSubsetEndpointAddress) GetIP() *string {
	if o == nil {
		return nil
	}
	return o.IP
}

func (o *KubernetesEndpointSubsetEndpointAddress) GetNodeName() *string {
	if o == nil {
		return nil
	}
	return o.NodeName
}
