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

package components

type RdpVersion struct {
	Major *int `json:"major,omitempty"`
	Minor *int `json:"minor,omitempty"`
	// Raw Version Response, Major version is stored in upper 2 bytes, minor in lower 2 bytes.
	Raw *string `json:"raw,omitempty"`
}

func (o *RdpVersion) GetMajor() *int {
	if o == nil {
		return nil
	}
	return o.Major
}

func (o *RdpVersion) GetMinor() *int {
	if o == nil {
		return nil
	}
	return o.Minor
}

func (o *RdpVersion) GetRaw() *string {
	if o == nil {
		return nil
	}
	return o.Raw
}
