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

package components

type DesktopInfo struct {
	Height      *int         `json:"height,omitempty"`
	NameLen     *int         `json:"name_len,omitempty"`
	PixelFormat *PixelFormat `json:"pixel_format,omitempty"`
	Width       *int         `json:"width,omitempty"`
}

func (o *DesktopInfo) GetHeight() *int {
	if o == nil {
		return nil
	}
	return o.Height
}

func (o *DesktopInfo) GetNameLen() *int {
	if o == nil {
		return nil
	}
	return o.NameLen
}

func (o *DesktopInfo) GetPixelFormat() *PixelFormat {
	if o == nil {
		return nil
	}
	return o.PixelFormat
}

func (o *DesktopInfo) GetWidth() *int {
	if o == nil {
		return nil
	}
	return o.Width
}
