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

package components

type Rtsp struct {
	Auth     *string  `json:"auth,omitempty"`
	Commands []string `json:"commands,omitempty"`
	Server   *string  `json:"server,omitempty"`
	WwwAuth  *string  `json:"www_auth,omitempty"`
}

func (o *Rtsp) GetAuth() *string {
	if o == nil {
		return nil
	}
	return o.Auth
}

func (o *Rtsp) GetCommands() []string {
	if o == nil {
		return nil
	}
	return o.Commands
}

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

func (o *Rtsp) GetWwwAuth() *string {
	if o == nil {
		return nil
	}
	return o.WwwAuth
}
