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

package components

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

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

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