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

package components

type Mssql struct {
	// The negotiated ENCRYPT_MODE with the server
	EncryptMode     *string               `json:"encrypt_mode,omitempty"`
	InstanceName    *string               `json:"instance_name,omitempty"`
	PreloginOptions *MssqlPreloginOptions `json:"prelogin_options,omitempty"`
	Version         *string               `json:"version,omitempty"`
}

func (o *Mssql) GetEncryptMode() *string {
	if o == nil {
		return nil
	}
	return o.EncryptMode
}

func (o *Mssql) GetInstanceName() *string {
	if o == nil {
		return nil
	}
	return o.InstanceName
}

func (o *Mssql) GetPreloginOptions() *MssqlPreloginOptions {
	if o == nil {
		return nil
	}
	return o.PreloginOptions
}

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