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

package components

type Winrm struct {
	AuthTypes []string  `json:"auth_types,omitempty"`
	NtlmInfo  *NtlmInfo `json:"ntlm_info,omitempty"`
}

func (o *Winrm) GetAuthTypes() []string {
	if o == nil {
		return nil
	}
	return o.AuthTypes
}

func (o *Winrm) GetNtlmInfo() *NtlmInfo {
	if o == nil {
		return nil
	}
	return o.NtlmInfo
}
