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

package components

type ServerSync struct {
	MaxBandwidth *int     `json:"max_bandwidth,omitempty"`
	Permissions  []string `json:"permissions,omitempty"`
	WelcomeText  *string  `json:"welcome_text,omitempty"`
}

func (o *ServerSync) GetMaxBandwidth() *int {
	if o == nil {
		return nil
	}
	return o.MaxBandwidth
}

func (o *ServerSync) GetPermissions() []string {
	if o == nil {
		return nil
	}
	return o.Permissions
}

func (o *ServerSync) GetWelcomeText() *string {
	if o == nil {
		return nil
	}
	return o.WelcomeText
}
