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

package components

type VncKeyValue struct {
	Name  *string `json:"name,omitempty"`
	Value *int    `json:"value,omitempty"`
}

func (o *VncKeyValue) GetName() *string {
	if o == nil {
		return nil
	}
	return o.Name
}

func (o *VncKeyValue) GetValue() *int {
	if o == nil {
		return nil
	}
	return o.Value
}
