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

package components

type EipService struct {
	Capabilities *int    `json:"capabilities,omitempty"`
	ServiceName  *string `json:"service_name,omitempty"`
	SupportsTCP  *bool   `json:"supports_tcp,omitempty"`
	SupportsUDP  *bool   `json:"supports_udp,omitempty"`
}

func (o *EipService) GetCapabilities() *int {
	if o == nil {
		return nil
	}
	return o.Capabilities
}

func (o *EipService) GetServiceName() *string {
	if o == nil {
		return nil
	}
	return o.ServiceName
}

func (o *EipService) GetSupportsTCP() *bool {
	if o == nil {
		return nil
	}
	return o.SupportsTCP
}

func (o *EipService) GetSupportsUDP() *bool {
	if o == nil {
		return nil
	}
	return o.SupportsUDP
}
