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

package components

type Sip struct {
	Code *int `json:"code,omitempty"`
	// Server software reported by service
	Server *string `json:"server,omitempty"`
	Status *string `json:"status,omitempty"`
	// SIP version
	Version *string `json:"version,omitempty"`
}

func (o *Sip) GetCode() *int {
	if o == nil {
		return nil
	}
	return o.Code
}

func (o *Sip) GetServer() *string {
	if o == nil {
		return nil
	}
	return o.Server
}

func (o *Sip) GetStatus() *string {
	if o == nil {
		return nil
	}
	return o.Status
}

func (o *Sip) GetVersion() *string {
	if o == nil {
		return nil
	}
	return o.Version
}
