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

package components

type TrackedScanScanTargetHostPort struct {
	IP   *string `json:"ip,omitempty"`
	Port *int    `json:"port,omitempty"`
}

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

func (o *TrackedScanScanTargetHostPort) GetPort() *int {
	if o == nil {
		return nil
	}
	return o.Port
}
