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

package components

type TrackedScanScanTargetHostnamePort struct {
	Hostname *string `json:"hostname,omitempty"`
	Port     *int    `json:"port,omitempty"`
}

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

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