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

package components

type CiscoIpslaHandshakeMessage struct {
	IP     *string `json:"ip,omitempty"`
	Length *int    `json:"length,omitempty"`
	Port   *int    `json:"port,omitempty"`
	Type   *int    `json:"type,omitempty"`
}

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

func (o *CiscoIpslaHandshakeMessage) GetLength() *int {
	if o == nil {
		return nil
	}
	return o.Length
}

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

func (o *CiscoIpslaHandshakeMessage) GetType() *int {
	if o == nil {
		return nil
	}
	return o.Type
}
